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

Unified Diff: runtime/vm/bitmap.h

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
Index: runtime/vm/bitmap.h
===================================================================
--- runtime/vm/bitmap.h (revision 26375)
+++ runtime/vm/bitmap.h (working copy)
@@ -54,7 +54,7 @@
bool InRange(intptr_t offset) const {
if (offset < 0) {
FATAL1("Fatal error in BitmapBuilder::InRange :"
- " invalid bit_offset, %"Pd"\n", offset);
+ " invalid bit_offset, %" Pd "\n", offset);
}
return (offset < length_);
}

Powered by Google App Engine
This is Rietveld 408576698