Reviewers: Jakob,

Description:
Fix several ancient presubmit failures.

[email protected]


Please review this at https://chromiumcodereview.appspot.com/10038046/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M include/v8.h
  M src/arguments.h


Index: include/v8.h
diff --git a/include/v8.h b/include/v8.h
index a55e13480ae0238c4600739cd9556df5ecd6ee93..f26d24b86a6261438999d46ce6714d456760c55e 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -1969,6 +1969,7 @@ class Arguments {
   inline bool IsConstructCall() const;
   inline Local<Value> Data() const;
   inline Isolate* GetIsolate() const;
+
  private:
   static const int kIsolateIndex = 0;
   static const int kDataIndex = -1;
@@ -1999,6 +2000,7 @@ class V8EXPORT AccessorInfo {
   inline Local<Value> Data() const;
   inline Local<Object> This() const;
   inline Local<Object> Holder() const;
+
  private:
   internal::Object** args_;
 };
Index: src/arguments.h
diff --git a/src/arguments.h b/src/arguments.h
index 2b8dddb0dfd02a93a3a06c2e30ebbe1a297e9a84..f8fb00c57538aeb32b7a0adcfdc40d0796a91332 100644
--- a/src/arguments.h
+++ b/src/arguments.h
@@ -108,6 +108,7 @@ class CustomArguments : public Relocatable {

   void IterateInstance(ObjectVisitor* v);
   Object** end() { return values_ + ARRAY_SIZE(values_) - 1; }
+
  private:
   Object* values_[4];
 };


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

Reply via email to