Revision: 10029
Author: [email protected]
Date: Fri Nov 18 03:16:58 2011
Log: Fix debug builds.
BUG=
TEST=
Review URL: http://codereview.chromium.org/8595007
http://code.google.com/p/v8/source/detail?r=10029
Modified:
/branches/bleeding_edge/src/hashmap.cc
/branches/bleeding_edge/src/scopes.cc
=======================================
--- /branches/bleeding_edge/src/hashmap.cc Fri Nov 18 03:08:46 2011
+++ /branches/bleeding_edge/src/hashmap.cc Fri Nov 18 03:16:58 2011
@@ -36,7 +36,7 @@
namespace v8 {
namespace internal {
-Allocator* HashMap::DefaultAllocator = new Allocator();
+Allocator* HashMap::DefaultAllocator = ::new Allocator();
HashMap::HashMap(MatchFun match,
=======================================
--- /branches/bleeding_edge/src/scopes.cc Fri Nov 18 03:08:46 2011
+++ /branches/bleeding_edge/src/scopes.cc Fri Nov 18 03:16:58 2011
@@ -55,7 +55,7 @@
};
-static ZoneAllocator* LocalsMapAllocator = new ZoneAllocator();
+static ZoneAllocator* LocalsMapAllocator = ::new ZoneAllocator();
//
----------------------------------------------------------------------------
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev