From: dslomov@chromium.org Date: Thu, 23 May 2013 10:29:28 +0000 (+0000) Subject: Fix Windows build after r14770 X-Git-Tag: upstream/4.7.83~14154 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=28729d24a4da0db42f8683ebb9db85bbeb5e5788;p=platform%2Fupstream%2Fv8.git Fix Windows build after r14770 TBR=svenpanne@chromium.org Review URL: https://codereview.chromium.org/15848003 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@14771 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc index 675ac7f..9311f22 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 ab = v8::ArrayBuffer::New(1024); - CHECK_EQ(1024, ab->ByteLength()); + CHECK_EQ(1024, static_cast(ab->ByteLength())); CHECK(!ab->IsExternal()); HEAP->CollectAllGarbage(i::Heap::kNoGCFlags);