Reviewers: Erik Corry,

Description:
Try fix win64 build.

TBR=erik.corry

Please review this at http://codereview.chromium.org/3446015/show

Affected files:
  M src/bootstrapper.cc


Index: src/bootstrapper.cc
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
index ff685724a49bd269b836dba953d4c904de55e9a7..1f125026843f98e7228de81f58d13cca725f66f0 100644
--- a/src/bootstrapper.cc
+++ b/src/bootstrapper.cc
@@ -1354,7 +1354,8 @@ static Handle<JSObject> ResolveCustomCallGeneratorHolder(
         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