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
This commit is contained in:
kmillikin@chromium.org 2010-03-24 11:22:56 +00:00
parent b5127faa57
commit 5e4dfe85d0

View File

@ -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; }