소스 검색

Removed duplicated operator delete from merge conflict.

Josh Haberman 9 년 전
부모
커밋
2cd79bf3a8
1개의 변경된 파일0개의 추가작업 그리고 6개의 파일을 삭제
  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();
 
-#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.
   void CrossLinkPrototypes();