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

Unified Diff: runtime/vm/raw_object_snapshot.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/raw_object.cc ('k') | runtime/vm/scanner.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/raw_object_snapshot.cc
===================================================================
--- runtime/vm/raw_object_snapshot.cc (revision 26375)
+++ runtime/vm/raw_object_snapshot.cc (working copy)
@@ -257,7 +257,7 @@
reinterpret_cast<uword>(ptr()->type_class_) - kHeapObjectTag +
Object::tags_offset()));
if (cid == kUnresolvedClassCid) {
- OS::Print("Snapshotting unresolved type '%s' at token pos %"Pd"\n",
+ OS::Print("Snapshotting unresolved type '%s' at token pos %" Pd "\n",
RawOneByteStringToCString(
reinterpret_cast<RawOneByteString*>(
reinterpret_cast<RawUnresolvedClass*>(
@@ -265,7 +265,7 @@
ptr()->token_pos_);
} else {
// Assume cid == kClassId, but it can also be kIllegalCid.
- OS::Print("Snapshotting unfinalized type '%s' at token pos %"Pd"\n",
+ OS::Print("Snapshotting unfinalized type '%s' at token pos %" Pd "\n",
RawOneByteStringToCString(
reinterpret_cast<RawOneByteString*>(
reinterpret_cast<RawClass*>(
@@ -342,7 +342,7 @@
// to, making sure not to allocate any handles. Unfortunately, we cannot
// print the script name.
OS::Print("Snapshotting unfinalized type parameter '%s' of class '%s' at "
- "token pos %"Pd"\n",
+ "token pos %" Pd "\n",
RawOneByteStringToCString(
reinterpret_cast<RawOneByteString*>(ptr()->name_)),
RawOneByteStringToCString(
« no previous file with comments | « runtime/vm/raw_object.cc ('k') | runtime/vm/scanner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698