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

Unified Diff: runtime/vm/bitmap.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
Index: runtime/vm/bitmap.cc
===================================================================
--- runtime/vm/bitmap.cc (revision 26375)
+++ runtime/vm/bitmap.cc (working copy)
@@ -88,7 +88,7 @@
void BitmapBuilder::SetBit(intptr_t bit_offset, bool value) {
if (!InRange(bit_offset)) {
FATAL1("Fatal error in BitmapBuilder::SetBit :"
- " invalid bit_offset, %"Pd"\n", bit_offset);
+ " invalid bit_offset, %" Pd "\n", bit_offset);
}
int byte_offset = bit_offset >> kBitsPerByteLog2;
ASSERT(byte_offset < data_size_in_bytes_);

Powered by Google App Engine
This is Rietveld 408576698