Browse Source

Removed duplicated operator delete from merge conflict.

Josh Haberman 9 years ago
parent
commit
2cd79bf3a8
1 changed files with 0 additions and 6 deletions
  1. 0 6
      src/google/protobuf/dynamic_message.cc

+ 0 - 6
src/google/protobuf/dynamic_message.cc

@@ -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();