Reviewers: Jakob,
Description:
Another attempt to make Visual C++ happy.
BUG=
Please review this at https://codereview.chromium.org/429903004/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+1, -2 lines):
M src/compiler/instruction.h
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(); }
protected:
explicit Instruction(InstructionCode opcode)
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.