aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/protobuf/util/walk_ut.cpp
diff options
context:
space:
mode:
authorAnton Samokhvalov <pg83@yandex.ru>2022-02-10 16:45:17 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:17 +0300
commitd3a398281c6fd1d3672036cb2d63f842d2cb28c5 (patch)
treedd4bd3ca0f36b817e96812825ffaf10d645803f2 /library/cpp/protobuf/util/walk_ut.cpp
parent72cb13b4aff9bc9cf22e49251bc8fd143f82538f (diff)
downloadydb-d3a398281c6fd1d3672036cb2d63f842d2cb28c5.tar.gz
Restoring authorship annotation for Anton Samokhvalov <pg83@yandex.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/protobuf/util/walk_ut.cpp')
-rw-r--r--library/cpp/protobuf/util/walk_ut.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/protobuf/util/walk_ut.cpp b/library/cpp/protobuf/util/walk_ut.cpp
index 2b101e79c5..2ea6071b17 100644
--- a/library/cpp/protobuf/util/walk_ut.cpp
+++ b/library/cpp/protobuf/util/walk_ut.cpp
@@ -7,7 +7,7 @@
using namespace NProtoBuf;
Y_UNIT_TEST_SUITE(ProtobufWalk) {
- static void InitProto(NProtobufUtilUt::TWalkTest & p, int level = 0) {
+ static void InitProto(NProtobufUtilUt::TWalkTest & p, int level = 0) {
p.SetOptInt(1);
p.AddRepInt(2);
p.AddRepInt(3);
@@ -24,16 +24,16 @@ Y_UNIT_TEST_SUITE(ProtobufWalk) {
}
}
- static bool IncreaseInts(Message & msg, const FieldDescriptor* fd) {
+ static bool IncreaseInts(Message & msg, const FieldDescriptor* fd) {
TMutableField f(msg, fd);
if (f.IsInstance<ui32>()) {
for (size_t i = 0; i < f.Size(); ++i)
- f.Set(f.Get<ui64>(i) + 1, i); // ui64 should be ok!
+ f.Set(f.Get<ui64>(i) + 1, i); // ui64 should be ok!
}
return true;
}
- static bool RepeatString1(Message & msg, const FieldDescriptor* fd) {
+ static bool RepeatString1(Message & msg, const FieldDescriptor* fd) {
TMutableField f(msg, fd);
if (f.IsString()) {
for (size_t i = 0; i < f.Size(); ++i)
@@ -43,7 +43,7 @@ Y_UNIT_TEST_SUITE(ProtobufWalk) {
return true;
}
- static bool ClearXXX(Message & msg, const FieldDescriptor* fd) {
+ static bool ClearXXX(Message & msg, const FieldDescriptor* fd) {
const FieldOptions& opt = fd->options();
if (opt.HasExtension(NProtobufUtilUt::XXX) && opt.GetExtension(NProtobufUtilUt::XXX))
TMutableField(msg, fd).Clear();