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

Unified Diff: runtime/vm/bitmap.h

Issue 2481873005: clang-format runtime/vm (Closed)
Patch Set: Merge Created 4 years, 1 month 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/bitfield.h ('k') | runtime/vm/bitmap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/bitmap.h
diff --git a/runtime/vm/bitmap.h b/runtime/vm/bitmap.h
index 20c19830df77d7cc6179b98a9a5664663b6c422c..657bd24c823188568bb3236ea5f2ff3300cbe18a 100644
--- a/runtime/vm/bitmap.h
+++ b/runtime/vm/bitmap.h
@@ -24,8 +24,7 @@ class BitmapBuilder : public ZoneAllocated {
BitmapBuilder()
: length_(0),
data_size_in_bytes_(kInitialSizeInBytes),
- data_(Thread::Current()->zone()->Alloc<uint8_t>(
- kInitialSizeInBytes)) {
+ data_(Thread::Current()->zone()->Alloc<uint8_t>(kInitialSizeInBytes)) {
memset(data_, 0, kInitialSizeInBytes);
}
@@ -55,8 +54,10 @@ class BitmapBuilder : public ZoneAllocated {
bool InRange(intptr_t offset) const {
if (offset < 0) {
- FATAL1("Fatal error in BitmapBuilder::InRange :"
- " invalid bit_offset, %" Pd "\n", offset);
+ FATAL1(
+ "Fatal error in BitmapBuilder::InRange :"
+ " invalid bit_offset, %" Pd "\n",
+ offset);
}
return (offset < length_);
}
« no previous file with comments | « runtime/vm/bitfield.h ('k') | runtime/vm/bitmap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698