aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authorkakabba <kakabba@yandex-team.ru>2022-02-10 16:46:04 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:04 +0300
commitc8e3995898c443e78266f7420aac5fb3da15d413 (patch)
treea530e068cc107e227deccc80722204db63a4d75d /library/cpp
parent110a978b66fe6c0916572df51cfead2a9b647174 (diff)
downloadydb-c8e3995898c443e78266f7420aac5fb3da15d413.tar.gz
Restoring authorship annotation for <kakabba@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/comptable/usage/ya.make4
-rw-r--r--library/cpp/comptable/ut/ya.make2
-rw-r--r--library/cpp/comptable/ya.make2
-rw-r--r--library/cpp/getopt/last_getopt.h2
-rw-r--r--library/cpp/getopt/last_getopt_support.h2
-rw-r--r--library/cpp/getopt/modchooser.h2
-rw-r--r--library/cpp/getopt/opt.h2
-rw-r--r--library/cpp/getopt/opt2.h2
-rw-r--r--library/cpp/getopt/posix_getopt.h2
-rw-r--r--library/cpp/getopt/print.cpp10
-rw-r--r--library/cpp/getopt/small/ya.make26
-rw-r--r--library/cpp/getopt/ya.make6
-rw-r--r--library/cpp/getopt/ygetopt.h2
-rw-r--r--library/cpp/monlib/encode/legacy_protobuf/protos/metric_meta.proto2
-rw-r--r--library/cpp/protobuf/json/inline.h2
-rw-r--r--library/cpp/protobuf/json/ut/filter_ut.proto2
-rw-r--r--library/cpp/protobuf/json/ut/inline_ut.proto2
-rw-r--r--library/cpp/protobuf/util/proto/merge.proto2
-rw-r--r--library/cpp/protobuf/util/ut/common_ut.proto2
-rw-r--r--library/cpp/sighandler/ya.make2
-rw-r--r--library/cpp/terminate_handler/sample/exception/ya.make2
-rw-r--r--library/cpp/unicode/normalization/ya.make2
22 files changed, 41 insertions, 41 deletions
diff --git a/library/cpp/comptable/usage/ya.make b/library/cpp/comptable/usage/ya.make
index ab31e7528c..3197b5f4ae 100644
--- a/library/cpp/comptable/usage/ya.make
+++ b/library/cpp/comptable/usage/ya.make
@@ -1,6 +1,6 @@
PROGRAM()
-OWNER(ironpeter)
+OWNER(ironpeter)
SRCS(
usage.cpp
@@ -9,5 +9,5 @@ SRCS(
PEERDIR(
library/cpp/comptable
)
-
+
END()
diff --git a/library/cpp/comptable/ut/ya.make b/library/cpp/comptable/ut/ya.make
index d0a49793a5..bc21fc375f 100644
--- a/library/cpp/comptable/ut/ya.make
+++ b/library/cpp/comptable/ut/ya.make
@@ -1,6 +1,6 @@
UNITTEST_FOR(library/cpp/comptable)
-OWNER(ironpeter)
+OWNER(ironpeter)
SRCS(
comptable_ut.cpp
diff --git a/library/cpp/comptable/ya.make b/library/cpp/comptable/ya.make
index 314603c62a..f27fb69793 100644
--- a/library/cpp/comptable/ya.make
+++ b/library/cpp/comptable/ya.make
@@ -1,6 +1,6 @@
LIBRARY()
-OWNER(ironpeter)
+OWNER(ironpeter)
SRCS(
comptable.cpp
diff --git a/library/cpp/getopt/last_getopt.h b/library/cpp/getopt/last_getopt.h
index d14f05cc5b..4a24cfbe4f 100644
--- a/library/cpp/getopt/last_getopt.h
+++ b/library/cpp/getopt/last_getopt.h
@@ -1,3 +1,3 @@
-#pragma once
+#pragma once
#include <library/cpp/getopt/small/last_getopt.h>
diff --git a/library/cpp/getopt/last_getopt_support.h b/library/cpp/getopt/last_getopt_support.h
index b71c7045b1..3eb609653c 100644
--- a/library/cpp/getopt/last_getopt_support.h
+++ b/library/cpp/getopt/last_getopt_support.h
@@ -1,3 +1,3 @@
-#pragma once
+#pragma once
#include <library/cpp/getopt/small/last_getopt_support.h>
diff --git a/library/cpp/getopt/modchooser.h b/library/cpp/getopt/modchooser.h
index 9bf73daf13..fc09e16d63 100644
--- a/library/cpp/getopt/modchooser.h
+++ b/library/cpp/getopt/modchooser.h
@@ -1,3 +1,3 @@
-#pragma once
+#pragma once
#include <library/cpp/getopt/small/modchooser.h>
diff --git a/library/cpp/getopt/opt.h b/library/cpp/getopt/opt.h
index d2a85075bd..f33208eae0 100644
--- a/library/cpp/getopt/opt.h
+++ b/library/cpp/getopt/opt.h
@@ -1,3 +1,3 @@
-#pragma once
+#pragma once
#include <library/cpp/getopt/small/opt.h>
diff --git a/library/cpp/getopt/opt2.h b/library/cpp/getopt/opt2.h
index 2d35bc7b29..a97ccf7eba 100644
--- a/library/cpp/getopt/opt2.h
+++ b/library/cpp/getopt/opt2.h
@@ -1,3 +1,3 @@
-#pragma once
+#pragma once
#include <library/cpp/getopt/small/opt2.h>
diff --git a/library/cpp/getopt/posix_getopt.h b/library/cpp/getopt/posix_getopt.h
index 8cb7ece624..f934f4fb02 100644
--- a/library/cpp/getopt/posix_getopt.h
+++ b/library/cpp/getopt/posix_getopt.h
@@ -1,3 +1,3 @@
-#pragma once
+#pragma once
#include <library/cpp/getopt/small/posix_getopt.h>
diff --git a/library/cpp/getopt/print.cpp b/library/cpp/getopt/print.cpp
index 8cf1c62e4d..0765532f8b 100644
--- a/library/cpp/getopt/print.cpp
+++ b/library/cpp/getopt/print.cpp
@@ -1,14 +1,14 @@
-#include "last_getopt.h"
+#include "last_getopt.h"
#include "last_getopt_support.h"
#include "modchooser.h"
#include "opt.h"
#include "opt2.h"
#include "posix_getopt.h"
#include "ygetopt.h"
-
+
#include <library/cpp/svnversion/svnversion.h>
#include <library/cpp/build_info/build_info.h>
-
+
namespace NLastGetoptPrivate {
TString InitVersionString() {
TString ts = GetProgramSvnVersion();
@@ -20,7 +20,7 @@ namespace NLastGetoptPrivate {
ts += sandboxTaskId;
}
return ts;
- }
+ }
TString InitShortVersionString() {
TString ts = GetProgramShortVersionData();
@@ -37,4 +37,4 @@ namespace NLastGetoptPrivate {
}
} Init;
-}
+}
diff --git a/library/cpp/getopt/small/ya.make b/library/cpp/getopt/small/ya.make
index 96de0f04b1..3453fa949b 100644
--- a/library/cpp/getopt/small/ya.make
+++ b/library/cpp/getopt/small/ya.make
@@ -1,28 +1,28 @@
-LIBRARY()
-
+LIBRARY()
+
OWNER(pg)
-
+
PEERDIR(
library/cpp/colorizer
)
-SRCS(
+SRCS(
completer.cpp
completer_command.cpp
completion_generator.cpp
formatted_output.cpp
- last_getopt.cpp
+ last_getopt.cpp
last_getopt_easy_setup.cpp
last_getopt_opt.cpp
last_getopt_opts.cpp
last_getopt_parser.cpp
last_getopt_parse_result.cpp
- modchooser.cpp
- opt.cpp
- opt2.cpp
- posix_getopt.cpp
+ modchooser.cpp
+ opt.cpp
+ opt2.cpp
+ posix_getopt.cpp
wrap.cpp
- ygetopt.cpp
-)
-
-END()
+ ygetopt.cpp
+)
+
+END()
diff --git a/library/cpp/getopt/ya.make b/library/cpp/getopt/ya.make
index 6df23b22b2..dd2cd5c40e 100644
--- a/library/cpp/getopt/ya.make
+++ b/library/cpp/getopt/ya.make
@@ -2,12 +2,12 @@ LIBRARY()
OWNER(pg)
-PEERDIR(
+PEERDIR(
library/cpp/getopt/small
library/cpp/svnversion
library/cpp/build_info
-)
-
+)
+
SRCS(
GLOBAL print.cpp
)
diff --git a/library/cpp/getopt/ygetopt.h b/library/cpp/getopt/ygetopt.h
index fd018b3128..126e1fbc4a 100644
--- a/library/cpp/getopt/ygetopt.h
+++ b/library/cpp/getopt/ygetopt.h
@@ -1,3 +1,3 @@
-#pragma once
+#pragma once
#include <library/cpp/getopt/small/ygetopt.h>
diff --git a/library/cpp/monlib/encode/legacy_protobuf/protos/metric_meta.proto b/library/cpp/monlib/encode/legacy_protobuf/protos/metric_meta.proto
index fd23eb372b..4e5d7b4932 100644
--- a/library/cpp/monlib/encode/legacy_protobuf/protos/metric_meta.proto
+++ b/library/cpp/monlib/encode/legacy_protobuf/protos/metric_meta.proto
@@ -1,4 +1,4 @@
-import "google/protobuf/descriptor.proto";
+import "google/protobuf/descriptor.proto";
package NMonProto;
diff --git a/library/cpp/protobuf/json/inline.h b/library/cpp/protobuf/json/inline.h
index e2d7bb6ef0..8a09991905 100644
--- a/library/cpp/protobuf/json/inline.h
+++ b/library/cpp/protobuf/json/inline.h
@@ -5,7 +5,7 @@
// An example of usage:
// 1) Define a field option in your .proto to identify fields which should be inlined, e.g.
//
-// import "google/protobuf/descriptor.proto";
+// import "google/protobuf/descriptor.proto";
// extend google.protobuf.FieldOptions {
// optional bool this_is_json = 58253; // do not forget assign some more or less unique tag
// }
diff --git a/library/cpp/protobuf/json/ut/filter_ut.proto b/library/cpp/protobuf/json/ut/filter_ut.proto
index 29d630ade4..0da5484dd1 100644
--- a/library/cpp/protobuf/json/ut/filter_ut.proto
+++ b/library/cpp/protobuf/json/ut/filter_ut.proto
@@ -1,4 +1,4 @@
-import "google/protobuf/descriptor.proto";
+import "google/protobuf/descriptor.proto";
package NProtobufJsonUt;
diff --git a/library/cpp/protobuf/json/ut/inline_ut.proto b/library/cpp/protobuf/json/ut/inline_ut.proto
index 76bd10232d..3b30020bab 100644
--- a/library/cpp/protobuf/json/ut/inline_ut.proto
+++ b/library/cpp/protobuf/json/ut/inline_ut.proto
@@ -1,4 +1,4 @@
-import "google/protobuf/descriptor.proto";
+import "google/protobuf/descriptor.proto";
package NProtobufJsonUt;
diff --git a/library/cpp/protobuf/util/proto/merge.proto b/library/cpp/protobuf/util/proto/merge.proto
index a937041c07..51bbe80f1b 100644
--- a/library/cpp/protobuf/util/proto/merge.proto
+++ b/library/cpp/protobuf/util/proto/merge.proto
@@ -1,4 +1,4 @@
-import "google/protobuf/descriptor.proto";
+import "google/protobuf/descriptor.proto";
// These meta-options are used for selecting proper merging method, see merge.h
diff --git a/library/cpp/protobuf/util/ut/common_ut.proto b/library/cpp/protobuf/util/ut/common_ut.proto
index 9cf803ffbf..8e24eb1212 100644
--- a/library/cpp/protobuf/util/ut/common_ut.proto
+++ b/library/cpp/protobuf/util/ut/common_ut.proto
@@ -1,4 +1,4 @@
-import "google/protobuf/descriptor.proto";
+import "google/protobuf/descriptor.proto";
import "library/cpp/protobuf/util/proto/merge.proto";
package NProtobufUtilUt;
diff --git a/library/cpp/sighandler/ya.make b/library/cpp/sighandler/ya.make
index c0f7ea6084..761739bf39 100644
--- a/library/cpp/sighandler/ya.make
+++ b/library/cpp/sighandler/ya.make
@@ -1,6 +1,6 @@
LIBRARY()
-OWNER(pg)
+OWNER(pg)
SRCS(
async_signals_handler.cpp
diff --git a/library/cpp/terminate_handler/sample/exception/ya.make b/library/cpp/terminate_handler/sample/exception/ya.make
index 958c26f89a..6d9e93bfda 100644
--- a/library/cpp/terminate_handler/sample/exception/ya.make
+++ b/library/cpp/terminate_handler/sample/exception/ya.make
@@ -1,4 +1,4 @@
-PROGRAM(exception_sample)
+PROGRAM(exception_sample)
OWNER(nga)
diff --git a/library/cpp/unicode/normalization/ya.make b/library/cpp/unicode/normalization/ya.make
index 95bc93f297..6431135ede 100644
--- a/library/cpp/unicode/normalization/ya.make
+++ b/library/cpp/unicode/normalization/ya.make
@@ -2,7 +2,7 @@ LIBRARY()
NO_UTIL()
-OWNER(alzobnin)
+OWNER(alzobnin)
SRCS(
generated/composition.cpp