Chromium Code Reviews| Index: test/unittests/test-utils.h |
| diff --git a/test/unittests/test-utils.h b/test/unittests/test-utils.h |
| index 511e3574c869ba064c207476ac5e3b679f16a4a4..838b05c880381eaa78d1de6bf1c45e0e53f8d239 100644 |
| --- a/test/unittests/test-utils.h |
| +++ b/test/unittests/test-utils.h |
| @@ -92,7 +92,7 @@ class TestWithIsolate : public virtual ::v8::TestWithIsolate { |
| class TestWithZone : public TestWithIsolate { |
| public: |
| - TestWithZone() : zone_(isolate()) {} |
| + TestWithZone() : zone_() {} |
|
Michael Starzinger
2015/01/23 14:21:11
nit: Explicit initializer call shouldn't be needed
danno
2015/01/23 14:45:21
Done.
|
| virtual ~TestWithZone(); |
| Zone* zone() { return &zone_; } |