aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbulatman <bulatman@yandex-team.com>2023-05-04 10:29:27 +0300
committerbulatman <bulatman@yandex-team.com>2023-05-04 10:29:27 +0300
commit78f806e7be5d2efc1b55499f646c0958abce058f (patch)
tree3a12cb5b3737f803eb2696a0bb363a0747c20e1f
parent6bccf8a6c51dfc4e563317584ee71ea0637c452a (diff)
downloadydb-78f806e7be5d2efc1b55499f646c0958abce058f.tar.gz
Remove extra semicolon in contrib/lib/protobuf patches
-rw-r--r--contrib/libs/protobuf/src/google/protobuf/json_util.h2
-rw-r--r--contrib/libs/protobuf/src/google/protobuf/stubs/common.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/libs/protobuf/src/google/protobuf/json_util.h b/contrib/libs/protobuf/src/google/protobuf/json_util.h
index ad3a4a5bfe..66a77a0fae 100644
--- a/contrib/libs/protobuf/src/google/protobuf/json_util.h
+++ b/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;
-};
+}
}
}
diff --git a/contrib/libs/protobuf/src/google/protobuf/stubs/common.h b/contrib/libs/protobuf/src/google/protobuf/stubs/common.h
index b104f51ef5..4a7036df17 100644
--- a/contrib/libs/protobuf/src/google/protobuf/stubs/common.h
+++ b/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>