From d80c627875ec4032c93498f888fb4fcf0f767b42 Mon Sep 17 00:00:00 2001 From: "vitalyr@chromium.org" Date: Tue, 21 Sep 2010 13:04:42 +0000 Subject: [PATCH] Try fix win64 build. TBR=erik.corry Review URL: http://codereview.chromium.org/3446015 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5500 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/bootstrapper.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc index ff68572..1f12502 100644 --- a/src/bootstrapper.cc +++ b/src/bootstrapper.cc @@ -1354,7 +1354,8 @@ static Handle ResolveCustomCallGeneratorHolder( GetProperty(global, Factory::LookupAsciiSymbol(holder_expr))); } ASSERT_EQ(".prototype", period_pos); - Vector property(holder_expr, period_pos - holder_expr); + Vector property(holder_expr, + static_cast(period_pos - holder_expr)); Handle function = Handle::cast( GetProperty(global, Factory::LookupSymbol(property))); return Handle(JSObject::cast(function->prototype())); -- 2.7.4