Reviewers: Erik Corry, Description: Fix lint issue.
[email protected] Please review this at http://codereview.chromium.org/2157006/show SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/parser.cc Index: src/parser.cc =================================================================== --- src/parser.cc (revision 4710) +++ src/parser.cc (working copy) @@ -5073,8 +5073,7 @@ int ScriptDataImpl::Length() { - static const int kCharToUnsignedFactor = sizeof(unsigned) / sizeof(char); - return store_.length() * kCharToUnsignedFactor; + return store_.length() * sizeof(unsigned); } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
