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

Unified Diff: runtime/vm/scavenger_test.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/scavenger.cc ('k') | runtime/vm/scope_timer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/scavenger_test.cc
diff --git a/runtime/vm/scavenger_test.cc b/runtime/vm/scavenger_test.cc
index 9776ccafc4a310d77a8fa4b0e8f350fbb7167573..cd8d61060b8a932bb51f5ee3af77b6c0c6f62c9b 100644
--- a/runtime/vm/scavenger_test.cc
+++ b/runtime/vm/scavenger_test.cc
@@ -12,10 +12,8 @@ namespace dart {
// Expects to visit no objects (since the space should be empty).
class FailingObjectVisitor : public ObjectVisitor {
public:
- FailingObjectVisitor() { }
- virtual void VisitObject(RawObject* obj) {
- EXPECT(false);
- }
+ FailingObjectVisitor() {}
+ virtual void VisitObject(RawObject* obj) { EXPECT(false); }
};
// Expects to visit no objects (since the space should be empty).
@@ -30,7 +28,7 @@ class FailingObjectPointerVisitor : public ObjectPointerVisitor {
// Expects to visit no objects (since the space should be empty).
class FailingFindObjectVisitor : public FindObjectVisitor {
public:
- FailingFindObjectVisitor() { }
+ FailingFindObjectVisitor() {}
virtual bool FindObject(RawObject* obj) const {
EXPECT(false);
return false;
« no previous file with comments | « runtime/vm/scavenger.cc ('k') | runtime/vm/scope_timer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698