diff options
author | bulatman <bulatman@yandex-team.com> | 2023-06-10 13:55:11 +0300 |
---|---|---|
committer | bulatman <bulatman@yandex-team.com> | 2023-06-10 13:55:11 +0300 |
commit | d570836295decdb827b4f95d75ebf2d8d9232b9b (patch) | |
tree | 859f3511dc3166e935b9c3438f6beee050816001 /library/cpp/protobuf | |
parent | 91497eb27263e2feb35b53a90773e7207752a2ec (diff) | |
download | ydb-d570836295decdb827b4f95d75ebf2d8d9232b9b.tar.gz |
Remove extra semicolon (library)
Diffstat (limited to 'library/cpp/protobuf')
-rw-r--r-- | library/cpp/protobuf/util/traits.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/protobuf/util/traits.h b/library/cpp/protobuf/util/traits.h index 50f036d0ea..7c2c6f15b4 100644 --- a/library/cpp/protobuf/util/traits.h +++ b/library/cpp/protobuf/util/traits.h @@ -44,7 +44,7 @@ namespace NProtoBuf { Y_ASSERT(fd); \ return fd->default_value_##method(); \ } \ - }; + } DECLARE_CPPTYPE_DEFAULT(FieldDescriptor::CppType::CPPTYPE_INT32, int32); DECLARE_CPPTYPE_DEFAULT(FieldDescriptor::CppType::CPPTYPE_INT64, int64); @@ -108,7 +108,7 @@ namespace NProtoBuf { struct TSelectCppType<type> { \ static const FieldDescriptor::CppType Result = cpptype; \ typedef type T; \ - }; + } DECLARE_CPPTYPE_TRAITS(FieldDescriptor::CPPTYPE_INT32, i32, Int32); DECLARE_CPPTYPE_TRAITS(FieldDescriptor::CPPTYPE_INT64, i64, Int64); |