Revision: 11627 Author: [email protected] Date: Wed May 23 00:13:10 2012 Log: Fix Win64 build.
BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10414073 http://code.google.com/p/v8/source/detail?r=11627 Modified: /branches/bleeding_edge/src/heap.cc ======================================= --- /branches/bleeding_edge/src/heap.cc Tue May 22 05:49:20 2012 +++ /branches/bleeding_edge/src/heap.cc Wed May 23 00:13:10 2012 @@ -3326,7 +3326,7 @@ return Failure::OutOfMemoryException(); } - ASSERT(String::IsAscii(resource->data(), length)); + ASSERT(String::IsAscii(resource->data(), static_cast<int>(length))); Map* map = external_ascii_string_map(); Object* result; -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
