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

Unified Diff: runtime/vm/memory_region.cc

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/memory_region.h ('k') | runtime/vm/message.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/memory_region.cc
diff --git a/runtime/vm/memory_region.cc b/runtime/vm/memory_region.cc
index ce0a107020bc6d51d71584f5774a7606d9d57a2a..0b4603d553cad57cce02e7d45c1161ba9b6ac665 100644
--- a/runtime/vm/memory_region.cc
+++ b/runtime/vm/memory_region.cc
@@ -10,8 +10,8 @@ void MemoryRegion::CopyFrom(uword offset, const MemoryRegion& from) const {
ASSERT(from.pointer() != NULL && from.size() > 0);
ASSERT(this->size() >= from.size());
ASSERT(offset <= this->size() - from.size());
- memmove(reinterpret_cast<void*>(start() + offset),
- from.pointer(), from.size());
+ memmove(reinterpret_cast<void*>(start() + offset), from.pointer(),
+ from.size());
}
} // namespace dart
« no previous file with comments | « runtime/vm/memory_region.h ('k') | runtime/vm/message.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698