Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(443)

Unified Diff: src/ast.h

Issue 1257002: Fix presubmit error (multiple statements on the same line). (Closed)
Patch Set: Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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; }
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698