commit | 3b9bc31999c9787eb726ecdbfd5796bfdec32a18 | [log] [tgz] |
---|---|---|
author | Ben Murdoch <benm@google.com> | Thu Jun 02 14:46:10 2016 +0100 |
committer | Ben Murdoch <benm@google.com> | Thu Jun 02 14:46:10 2016 +0100 |
tree | b521168bf78078bea1c0a9851e6ca7099318195e | |
parent | c007f9a1597810ec6ccf9b289e98fda574a0dde7 [diff] [blame] |
Upgrade V8 to 5.1.281.57 Change-Id: Id981b686b4d587ac31697662eb98bb34be42ad90
diff --git a/test/unittests/compiler/zone-pool-unittest.cc b/test/unittests/compiler/zone-pool-unittest.cc index 3bfde4b..47f1cc5 100644 --- a/test/unittests/compiler/zone-pool-unittest.cc +++ b/test/unittests/compiler/zone-pool-unittest.cc
@@ -12,7 +12,7 @@ class ZonePoolTest : public TestWithIsolate { public: - ZonePoolTest() {} + ZonePoolTest() : zone_pool_(&allocator_) {} protected: ZonePool* zone_pool() { return &zone_pool_; } @@ -38,6 +38,7 @@ } private: + base::AccountingAllocator allocator_; ZonePool zone_pool_; base::RandomNumberGenerator rng; };