diff options
author | bulatman <bulatman@yandex-team.com> | 2023-05-04 10:29:27 +0300 |
---|---|---|
committer | bulatman <bulatman@yandex-team.com> | 2023-05-04 10:29:27 +0300 |
commit | 78f806e7be5d2efc1b55499f646c0958abce058f (patch) | |
tree | 3a12cb5b3737f803eb2696a0bb363a0747c20e1f | |
parent | 6bccf8a6c51dfc4e563317584ee71ea0637c452a (diff) | |
download | ydb-78f806e7be5d2efc1b55499f646c0958abce058f.tar.gz |
Remove extra semicolon in contrib/lib/protobuf patches
-rw-r--r-- | contrib/libs/protobuf/src/google/protobuf/json_util.h | 2 | ||||
-rw-r--r-- | contrib/libs/protobuf/src/google/protobuf/stubs/common.h | 2 |
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> |