Revision: 4711
Author: [email protected]
Date: Mon May 24 23:43:13 2010
Log: Fix lint issue and compile error.

[email protected]
Review URL: http://codereview.chromium.org/2157006
http://code.google.com/p/v8/source/detail?r=4711

Modified:
 /branches/bleeding_edge/src/objects.cc
 /branches/bleeding_edge/src/parser.cc

=======================================
--- /branches/bleeding_edge/src/objects.cc      Mon May 24 23:38:19 2010
+++ /branches/bleeding_edge/src/objects.cc      Mon May 24 23:43:13 2010
@@ -139,8 +139,7 @@
 }


-Object* Object::GetPropertyWithCallk
-jback(Object* receiver,
+Object* Object::GetPropertyWithCallback(Object* receiver,
                                         Object* structure,
                                         String* name,
                                         Object* holder) {
=======================================
--- /branches/bleeding_edge/src/parser.cc       Mon May 24 23:38:19 2010
+++ /branches/bleeding_edge/src/parser.cc       Mon May 24 23:43:13 2010
@@ -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

Reply via email to