Revision: 14300
Author: [email protected]
Date: Wed Apr 17 02:19:00 2013
Log: Unbreak Win64 build.
Review URL: https://codereview.chromium.org/13976013
http://code.google.com/p/v8/source/detail?r=14300
Modified:
/branches/bleeding_edge/src/runtime.cc
=======================================
--- /branches/bleeding_edge/src/runtime.cc Tue Apr 16 23:25:29 2013
+++ /branches/bleeding_edge/src/runtime.cc Wed Apr 17 02:19:00 2013
@@ -825,7 +825,8 @@
ASSERT(byte_length % elementSize == 0);
size_t length = byte_length / elementSize;
- Handle<Object> length_obj = isolate->factory()->NewNumber(length);
+ Handle<Object> length_obj =
+ isolate->factory()->NewNumber(static_cast<double>(length));
holder->set_length(*length_obj);
Handle<ExternalArray> elements =
isolate->factory()->NewExternalArray(
--
--
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.