Revision: 14771
Author:   [email protected]
Date:     Thu May 23 03:29:28 2013
Log:      Fix Windows build after r14770

[email protected]

Review URL: https://codereview.chromium.org/15848003
http://code.google.com/p/v8/source/detail?r=14771

Modified:
 /branches/bleeding_edge/test/cctest/test-api.cc

=======================================
--- /branches/bleeding_edge/test/cctest/test-api.cc     Thu May 23 03:01:42 2013
+++ /branches/bleeding_edge/test/cctest/test-api.cc     Thu May 23 03:29:28 2013
@@ -2502,7 +2502,7 @@
   v8::HandleScope handle_scope(isolate);

   Local<v8::ArrayBuffer> ab = v8::ArrayBuffer::New(1024);
-  CHECK_EQ(1024, ab->ByteLength());
+  CHECK_EQ(1024, static_cast<int>(ab->ByteLength()));
   CHECK(!ab->IsExternal());
   HEAP->CollectAllGarbage(i::Heap::kNoGCFlags);

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to