| Index: src/zone/zone-allocator.h
|
| diff --git a/src/zone/zone-allocator.h b/src/zone/zone-allocator.h
|
| index 1e2862a2c1144b018884d6c55643f301c6bff3be..412cdcce8555bde857606f55ef950e668a400504 100644
|
| --- a/src/zone/zone-allocator.h
|
| +++ b/src/zone/zone-allocator.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef V8_ZONE_ZONE_ALLOCATOR_H_
|
| #define V8_ZONE_ZONE_ALLOCATOR_H_
|
| #include <limits>
|
| +#include <new>
|
|
|
| #include "src/zone/zone.h"
|
|
|
| @@ -50,7 +51,7 @@ class zone_allocator {
|
| return std::numeric_limits<int>::max() / sizeof(value_type);
|
| }
|
| void construct(pointer p, const T& val) {
|
| - new (static_cast<void*>(p)) T(val);
|
| + ::new (static_cast<void*>(p)) T(val);
|
| }
|
| void destroy(pointer p) { p->~T(); }
|
|
|
|
|