Index: src/compiler/instruction.h |
diff --git a/src/compiler/instruction.h b/src/compiler/instruction.h |
index 92b785bb3f4d2bff51fcd0a34af5577e0555c9c7..5acb3d0c79084a52901fa8f86e0cea9457230591 100644 |
--- a/src/compiler/instruction.h |
+++ b/src/compiler/instruction.h |
@@ -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* location) { UNREACHABLE(); } |
Jakob Kummerow
2014/07/30 15:03:32
I think you need:
void operator delete(void* poin
|
protected: |
explicit Instruction(InstructionCode opcode) |