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

Unified Diff: runtime/vm/ast_printer.cc

Issue 23072026: fix cpp11 compile errors (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 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 | « runtime/vm/ast.cc ('k') | runtime/vm/bitmap.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/ast_printer.cc
===================================================================
--- runtime/vm/ast_printer.cc (revision 26375)
+++ runtime/vm/ast_printer.cc (working copy)
@@ -171,7 +171,7 @@
void AstPrinter::VisitBinaryOpWithMask32Node(BinaryOpWithMask32Node* node) {
OS::Print("(%s ", node->Name());
node->VisitChildren(this);
- OS::Print(" & 0x%"Px64"", node->mask32());
+ OS::Print(" & 0x%" Px64 "", node->mask32());
OS::Print(")");
}
@@ -419,7 +419,7 @@
} else if (var->owner()->function_level() != 0) {
OS::Print(" lev %d", var->owner()->function_level());
}
- OS::Print(" valid %"Pd"-%"Pd")",
+ OS::Print(" valid %" Pd "-%" Pd ")",
var->token_pos(),
scope->end_token_pos());
}
@@ -480,7 +480,7 @@
OS::Print(" ctx %d", param->owner()->context_level());
}
}
- OS::Print(" valid %"Pd"-%"Pd")",
+ OS::Print(" valid %" Pd "-%" Pd ")",
param->token_pos(),
scope->end_token_pos());
pos++;
« no previous file with comments | « runtime/vm/ast.cc ('k') | runtime/vm/bitmap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698