Index: test/cctest/cctest.h |
diff --git a/test/cctest/cctest.h b/test/cctest/cctest.h |
index af0f666a89c1466d0fdcb2cdf97ad67c27b246d6..eaae73d83dac3669ad574406072aa4de0bcb81f3 100644 |
--- a/test/cctest/cctest.h |
+++ b/test/cctest/cctest.h |
@@ -577,7 +577,7 @@ class InitializedHandleScope { |
class HandleAndZoneScope : public InitializedHandleScope { |
public: |
- HandleAndZoneScope() : main_zone_(main_isolate()) {} |
+ HandleAndZoneScope() : main_zone_() {} |
Michael Starzinger
2015/01/23 14:21:11
nit: Explicit initializer call can be dropped.
danno
2015/01/23 14:45:20
Done.
|
// Prefixing the below with main_ reduces a lot of naming clashes. |
i::Zone* main_zone() { return &main_zone_; } |