Chromium Code Reviews

Unified Diff: src/parser.cc

Issue 2157006: Fix lint issue. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « src/objects.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « src/objects.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine