Revision: 5042
Author: [email protected]
Date: Mon Jul 12 06:11:42 2010
Log: Fix Win64 build problem introduced by r5041.

Review URL: http://codereview.chromium.org/2893009
http://code.google.com/p/v8/source/detail?r=5042

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

=======================================
--- /branches/bleeding_edge/src/heap.cc Mon Jul 12 05:47:09 2010
+++ /branches/bleeding_edge/src/heap.cc Mon Jul 12 06:11:42 2010
@@ -818,7 +818,7 @@

   void remove(HeapObject** target, int* size) {
     *target = reinterpret_cast<HeapObject*>(*(--front_));
-    *size = *(--front_);
+    *size = static_cast<int>(*(--front_));
     // Assert no underflow.
     ASSERT(front_ >= rear_);
   }

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to