Commit 2cd79bf3 authored by Josh Haberman's avatar Josh Haberman

Removed duplicated operator delete from merge conflict.

parent 4465daa5
...@@ -253,12 +253,6 @@ class DynamicMessage : public Message { ...@@ -253,12 +253,6 @@ class DynamicMessage : public Message {
DynamicMessage(const TypeInfo* type_info); DynamicMessage(const TypeInfo* type_info);
~DynamicMessage(); ~DynamicMessage();
#ifndef _MSC_VER
void operator delete(void *p) {
::operator delete(p); // non-sized deallocation
}
#endif
// Called on the prototype after construction to initialize message fields. // Called on the prototype after construction to initialize message fields.
void CrossLinkPrototypes(); void CrossLinkPrototypes();
......
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