Revision: 5500
Author: [email protected]
Date: Tue Sep 21 06:04:42 2010
Log: Try fix win64 build.

TBR=erik.corry

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

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

=======================================
--- /branches/bleeding_edge/src/bootstrapper.cc Tue Sep 21 05:54:12 2010
+++ /branches/bleeding_edge/src/bootstrapper.cc Tue Sep 21 06:04:42 2010
@@ -1354,7 +1354,8 @@
         GetProperty(global, Factory::LookupAsciiSymbol(holder_expr)));
   }
   ASSERT_EQ(".prototype", period_pos);
-  Vector<const char> property(holder_expr, period_pos - holder_expr);
+  Vector<const char> property(holder_expr,
+                              static_cast<int>(period_pos - holder_expr));
   Handle<JSFunction> function = Handle<JSFunction>::cast(
       GetProperty(global, Factory::LookupSymbol(property)));
   return Handle<JSObject>(JSObject::cast(function->prototype()));

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

Reply via email to