Commit bbab5326 authored by yangguo@chromium.org's avatar yangguo@chromium.org

Fix debug builds.

BUG=
TEST=

Review URL: http://codereview.chromium.org/8595007

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@10029 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 5c23e4e5
......@@ -36,7 +36,7 @@
namespace v8 {
namespace internal {
Allocator* HashMap::DefaultAllocator = new Allocator();
Allocator* HashMap::DefaultAllocator = ::new Allocator();
HashMap::HashMap(MatchFun match,
......
......@@ -55,7 +55,7 @@ class ZoneAllocator: public Allocator {
};
static ZoneAllocator* LocalsMapAllocator = new ZoneAllocator();
static ZoneAllocator* LocalsMapAllocator = ::new ZoneAllocator();
// ----------------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment