Revision: 14289
Author:   [email protected]
Date:     Tue Apr 16 07:55:09 2013
Log:      Fix compilation failure on Win64 since r14285.

[email protected]

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

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

=======================================
--- /branches/bleeding_edge/src/runtime.cc      Tue Apr 16 07:34:02 2013
+++ /branches/bleeding_edge/src/runtime.cc      Tue Apr 16 07:55:09 2013
@@ -829,7 +829,7 @@
       *isolate->factory()->NewNumber(static_cast<double>(length)));
   Handle<ExternalArray> elements =
       isolate->factory()->NewExternalArray(
-          length, arrayType,
+          static_cast<int>(length), arrayType,
           static_cast<uint8_t*>(buffer->backing_store()) + byte_offset);
   Handle<Map> map =
       isolate->factory()->GetElementsTransitionMap(holder, elementsKind);

--
--
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