From: vitalyr@chromium.org Date: Tue, 21 Sep 2010 13:04:42 +0000 (+0000) Subject: Try fix win64 build. X-Git-Tag: upstream/4.7.83~21180 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d80c627875ec4032c93498f888fb4fcf0f767b42;p=platform%2Fupstream%2Fv8.git 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 --- 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()));