Commit 937ec780 authored by jarin@chromium.org's avatar jarin@chromium.org

Another attempt to make Visual C++ happy.

BUG=
R=jkummerow@chromium.org

Review URL: https://codereview.chromium.org/429903004

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22717 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 2f676714
......@@ -489,8 +489,7 @@ class Instruction : public ZoneObject {
// zone-allocated memory.
void* operator new(size_t, void* location) { return location; }
void operator delete(void*, size_t) { UNREACHABLE(); }
void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); }
void operator delete(void* pointer, void* location) { UNREACHABLE(); }
protected:
explicit Instruction(InstructionCode opcode)
......
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