Reviewers: fschneider,

Description:
Fix presubmit error (multiple statements on the same line).

[email protected]

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

Affected files:
  M src/ast.h


Index: src/ast.h
diff --git a/src/ast.h b/src/ast.h
index 53ce1ab772ca97e447aad34dc5db037f437e2b16..d153f98a6ad91678d3f01dd756ac625b5917d3a5 100644
--- a/src/ast.h
+++ b/src/ast.h
@@ -154,7 +154,10 @@ class AstNode: public ZoneObject {

// 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