| Index: runtime/vm/verifier.h
|
| diff --git a/runtime/vm/verifier.h b/runtime/vm/verifier.h
|
| index bade6abc6088ee9e8e1972de824ec8636e0a439c..e9497385463d60406451590a5d33ff312dedd242 100644
|
| --- a/runtime/vm/verifier.h
|
| +++ b/runtime/vm/verifier.h
|
| @@ -18,22 +18,17 @@ class ObjectSet;
|
| class RawObject;
|
|
|
|
|
| -enum MarkExpectation {
|
| - kForbidMarked,
|
| - kAllowMarked,
|
| - kRequireMarked
|
| -};
|
| +enum MarkExpectation { kForbidMarked, kAllowMarked, kRequireMarked };
|
|
|
|
|
| class VerifyObjectVisitor : public ObjectVisitor {
|
| public:
|
| VerifyObjectVisitor(Isolate* isolate,
|
| - ObjectSet* allocated_set,
|
| - MarkExpectation mark_expectation)
|
| + ObjectSet* allocated_set,
|
| + MarkExpectation mark_expectation)
|
| : isolate_(isolate),
|
| allocated_set_(allocated_set),
|
| - mark_expectation_(mark_expectation) {
|
| - }
|
| + mark_expectation_(mark_expectation) {}
|
|
|
| virtual void VisitObject(RawObject* obj);
|
|
|
| @@ -50,9 +45,7 @@ class VerifyObjectVisitor : public ObjectVisitor {
|
| class VerifyPointersVisitor : public ObjectPointerVisitor {
|
| public:
|
| explicit VerifyPointersVisitor(Isolate* isolate, ObjectSet* allocated_set)
|
| - : ObjectPointerVisitor(isolate),
|
| - allocated_set_(allocated_set) {
|
| - }
|
| + : ObjectPointerVisitor(isolate), allocated_set_(allocated_set) {}
|
|
|
| virtual void VisitPointers(RawObject** first, RawObject** last);
|
|
|
| @@ -67,9 +60,7 @@ class VerifyPointersVisitor : public ObjectPointerVisitor {
|
| class VerifyWeakPointersVisitor : public HandleVisitor {
|
| public:
|
| explicit VerifyWeakPointersVisitor(VerifyPointersVisitor* visitor)
|
| - : HandleVisitor(Thread::Current()),
|
| - visitor_(visitor) {
|
| - }
|
| + : HandleVisitor(Thread::Current()), visitor_(visitor) {}
|
|
|
| virtual void VisitHandle(uword addr);
|
|
|
|
|