Reviewers: Søren Gjesse,

Message:
[email protected]

Description:
Fix lint errors

Please review this at http://codereview.chromium.org/626002

Affected files:
  M src/liveedit.h
  M src/liveedit.cc


Index: src/liveedit.cc
diff --git a/src/liveedit.cc b/src/liveedit.cc
index 01badc0384196d16588707e3bc9fff47c544b6d7..c50e007f933b06d572fa61716c684c1b48741151 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.
   }

Index: src/liveedit.h
diff --git a/src/liveedit.h b/src/liveedit.h
index 96dea90d53245a4d34f1586161feef4a9c2a91c7..73aa7d3d3c2120f3ac318fbf6ac99f524234cb85 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> code);
   void RecordFunctionScope(Scope* scope);


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to