diff options
author | svkrasnov <svkrasnov@yandex-team.ru> | 2022-02-10 16:50:36 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:36 +0300 |
commit | f844999843f80df761f7bbd58b0d2ca479f2dd32 (patch) | |
tree | d42db3b18dc5b59d3874e4f15444076164fd5205 /library/cpp/protobuf/util/ut | |
parent | a1fb24cd1409be21002b3f8d291c3f6cfc113e68 (diff) | |
download | ydb-f844999843f80df761f7bbd58b0d2ca479f2dd32.tar.gz |
Restoring authorship annotation for <svkrasnov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/protobuf/util/ut')
-rw-r--r-- | library/cpp/protobuf/util/ut/common_ut.proto | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/library/cpp/protobuf/util/ut/common_ut.proto b/library/cpp/protobuf/util/ut/common_ut.proto index 9cf803ffbf9..766d4e34daa 100644 --- a/library/cpp/protobuf/util/ut/common_ut.proto +++ b/library/cpp/protobuf/util/ut/common_ut.proto @@ -18,25 +18,25 @@ message TWalkTest { repeated TWalkTest RepSub = 6; } -message TWalkTestCyclic { - optional TNested OptNested = 1; - repeated uint64 OptInt64 = 2; - optional TWalkTestCyclic OptSub = 3; - optional TEnum OptEnum = 4; - - message TNested { - optional uint32 OptInt32 = 1; - optional TWalkTestCyclic OptSubNested = 2; - repeated string RepStr = 3; - optional TNested OptNested = 4; - } - enum TEnum { - A = 0; - B = 1; - C = 2; - } -} +message TWalkTestCyclic { + optional TNested OptNested = 1; + repeated uint64 OptInt64 = 2; + optional TWalkTestCyclic OptSub = 3; + optional TEnum OptEnum = 4; + message TNested { + optional uint32 OptInt32 = 1; + optional TWalkTestCyclic OptSubNested = 2; + repeated string RepStr = 3; + optional TNested OptNested = 4; + } + enum TEnum { + A = 0; + B = 1; + C = 2; + } +} + message TMergeTestNoMerge { option (DontMerge) = true; |