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

Unified Diff: runtime/vm/become.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/base_isolate.h ('k') | runtime/vm/become.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/become.h
diff --git a/runtime/vm/become.h b/runtime/vm/become.h
index 0bee126aec24799c649ffdde342863893bbd7dae..1784d22edb3e1f5373839c5d04c6f258f250e70e 100644
--- a/runtime/vm/become.h
+++ b/runtime/vm/become.h
@@ -22,12 +22,8 @@ class Array;
// representation as a FreeListElement.
class ForwardingCorpse {
public:
- RawObject* target() const {
- return target_;
- }
- void set_target(RawObject* target) {
- target_ = target;
- }
+ RawObject* target() const { return target_; }
+ void set_target(RawObject* target) { target_ = target; }
intptr_t Size() {
intptr_t size = RawObject::SizeTag::decode(tags_);
@@ -42,7 +38,7 @@ class ForwardingCorpse {
// Used to allocate class for forwarding corpses in Object::InitOnce.
class FakeInstance {
public:
- FakeInstance() { }
+ FakeInstance() {}
static cpp_vtable vtable() { return 0; }
static intptr_t InstanceSize() { return 0; }
static intptr_t NextFieldOffset() { return -kWordSize; }
« no previous file with comments | « runtime/vm/base_isolate.h ('k') | runtime/vm/become.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698