From 95ae0247717a42ac4100fccaaea13d04377060b4 Mon Sep 17 00:00:00 2001 From: "peter.rybin@gmail.com" Date: Wed, 17 Feb 2010 20:57:05 +0000 Subject: [PATCH] Fix lint errors Review URL: http://codereview.chromium.org/626002 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3892 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/liveedit.cc | 2 +- src/liveedit.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/liveedit.cc b/src/liveedit.cc index 01badc0..c50e007 100644 --- a/src/liveedit.cc +++ b/src/liveedit.cc @@ -49,7 +49,7 @@ class FunctionInfoListener { // Implementation follows. } - void FunctionScope(Scope* scope){ + void FunctionScope(Scope* scope) { // Implementation follows. } diff --git a/src/liveedit.h b/src/liveedit.h index 96dea90..73aa7d3 100644 --- a/src/liveedit.h +++ b/src/liveedit.h @@ -65,7 +65,7 @@ namespace internal { // also collects compiled function codes. class LiveEditFunctionTracker { public: - LiveEditFunctionTracker(FunctionLiteral* fun); + explicit LiveEditFunctionTracker(FunctionLiteral* fun); ~LiveEditFunctionTracker(); void RecordFunctionCode(Handle code); void RecordFunctionScope(Scope* scope); -- 2.7.4