Revision: 11700
Author:   [email protected]
Date:     Fri Jun  1 05:28:15 2012
Log:      STATIC_ASSERT is not available in shared build.

[email protected]
BUG=
TEST=

Review URL: https://chromiumcodereview.appspot.com/10444136
http://code.google.com/p/v8/source/detail?r=11700

Modified:
 /branches/bleeding_edge/src/d8.cc

=======================================
--- /branches/bleeding_edge/src/d8.cc   Fri Jun  1 05:10:19 2012
+++ /branches/bleeding_edge/src/d8.cc   Fri Jun  1 05:28:15 2012
@@ -1020,7 +1020,7 @@


 Handle<Value> Shell::ReadBuffer(const Arguments& args) {
-  STATIC_ASSERT(sizeof(char) == sizeof(uint8_t));  // NOLINT
+  ASSERT(sizeof(char) == sizeof(uint8_t));  // NOLINT
   String::Utf8Value filename(args[0]);
   int length;
   if (*filename == NULL) {

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to