Revision: 4248
Author: [email protected]
Date: Wed Mar 24 04:22:56 2010
Log: Fix presubmit error (multiple statements on the same line).

[email protected]

Review URL: http://codereview.chromium.org/1257002
http://code.google.com/p/v8/source/detail?r=4248

Modified:
 /branches/bleeding_edge/src/ast.h

=======================================
--- /branches/bleeding_edge/src/ast.h   Wed Mar 24 03:36:18 2010
+++ /branches/bleeding_edge/src/ast.h   Wed Mar 24 04:22:56 2010
@@ -154,7 +154,10 @@

// True if the AST node is critical (its execution is needed or externally
   // visible in some way).
-  virtual bool IsCritical() { UNREACHABLE(); return true; }
+  virtual bool IsCritical() {
+    UNREACHABLE();
+    return true;
+  }

   int num() { return num_; }
   void set_num(int n) { num_ = n; }

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

To unsubscribe from this group, send email to v8-dev+unsubscribegooglegroups.com or reply 
to this email with the words "REMOVE ME" as the subject.

Reply via email to