Revision: 3892 Author: [email protected] Date: Wed Feb 17 12:57:05 2010 Log: Fix lint errors
Review URL: http://codereview.chromium.org/626002 http://code.google.com/p/v8/source/detail?r=3892 Modified: /branches/bleeding_edge/src/liveedit.cc /branches/bleeding_edge/src/liveedit.h ======================================= --- /branches/bleeding_edge/src/liveedit.cc Wed Feb 17 12:37:08 2010 +++ /branches/bleeding_edge/src/liveedit.cc Wed Feb 17 12:57:05 2010 @@ -49,7 +49,7 @@ // Implementation follows. } - void FunctionScope(Scope* scope){ + void FunctionScope(Scope* scope) { // Implementation follows. } ======================================= --- /branches/bleeding_edge/src/liveedit.h Wed Feb 17 12:37:08 2010 +++ /branches/bleeding_edge/src/liveedit.h Wed Feb 17 12:57:05 2010 @@ -65,7 +65,7 @@ // also collects compiled function codes. class LiveEditFunctionTracker { public: - LiveEditFunctionTracker(FunctionLiteral* fun); + explicit LiveEditFunctionTracker(FunctionLiteral* fun); ~LiveEditFunctionTracker(); void RecordFunctionCode(Handle<Code> code); void RecordFunctionScope(Scope* scope); -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
