Browse Source

Remove extra semicolon in contrib/lib/protobuf patches

bulatman 1 year ago
parent
commit
78f806e7be

+ 1 - 1
contrib/libs/protobuf/src/google/protobuf/json_util.h

@@ -23,7 +23,7 @@ template<class T>
 inline IOutputStream& operator <<(IOutputStream& stream, const TAsJSON<T>& protoAsJSON) {
     protoAsJSON.T_.PrintJSON(stream);
     return stream;
-};
+}
 
 }
 }

+ 1 - 1
contrib/libs/protobuf/src/google/protobuf/stubs/common.h

@@ -201,7 +201,7 @@ using string = TProtoStringType;
 namespace NProtoBuf {
   using namespace google;
   using namespace google::protobuf;
-};
+}
 
 #include <google/protobuf/port_undef.inc>