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

TBR=fschneider@chromium.org

Review URL: http://codereview.chromium.org/1257002

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4248 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent b5127faa
...@@ -154,7 +154,10 @@ class AstNode: public ZoneObject { ...@@ -154,7 +154,10 @@ class AstNode: public ZoneObject {
// True if the AST node is critical (its execution is needed or externally // True if the AST node is critical (its execution is needed or externally
// visible in some way). // visible in some way).
virtual bool IsCritical() { UNREACHABLE(); return true; } virtual bool IsCritical() {
UNREACHABLE();
return true;
}
int num() { return num_; } int num() { return num_; }
void set_num(int n) { num_ = n; } void set_num(int n) { num_ = n; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment