Reviewers: Sven Panne,
Message:
Committed patchset #1 manually as r14771 (presubmit successful).
Description:
Fix Windows build after r14770
[email protected]
Committed: https://code.google.com/p/v8/source/detail?r=14771
Please review this at https://codereview.chromium.org/15848003/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files:
M test/cctest/test-api.cc
Index: test/cctest/test-api.cc
diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc
index
675ac7fd7e9a1806c79e5c7b3367a9c2c5bd8c5a..9311f2221370231ca41e1edf089798e144a31071
100644
--- a/test/cctest/test-api.cc
+++ b/test/cctest/test-api.cc
@@ -2502,7 +2502,7 @@ THREADED_TEST(ArrayBuffer_ApiInternalToExternal) {
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.