aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/lwtrace
diff options
context:
space:
mode:
authorAndrey Fomichev <andrey.fomichev@gmail.com>2022-02-10 16:49:12 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:12 +0300
commite542cc14db4240643a06bb0dde87ecf361f101ab (patch)
tree3b03a4b94acd11a4eca042532035806e5fa08ad1 /library/cpp/lwtrace
parente2ac73225f30f7fcf7df3cb225cba257f56144c1 (diff)
downloadydb-e542cc14db4240643a06bb0dde87ecf361f101ab.tar.gz
Restoring authorship annotation for Andrey Fomichev <andrey.fomichev@gmail.com>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/lwtrace')
-rw-r--r--library/cpp/lwtrace/example5/lwtrace_example5.cpp4
-rw-r--r--library/cpp/lwtrace/protos/ya.make2
-rw-r--r--library/cpp/lwtrace/ya.make2
3 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/lwtrace/example5/lwtrace_example5.cpp b/library/cpp/lwtrace/example5/lwtrace_example5.cpp
index 1c324473c2a..11aee7568fc 100644
--- a/library/cpp/lwtrace/example5/lwtrace_example5.cpp
+++ b/library/cpp/lwtrace/example5/lwtrace_example5.cpp
@@ -5,7 +5,7 @@ template <ui64 N>
ui64 Fact() {
ui64 result = N * Fact<N - 1>();
-#ifndef LWTRACE_DISABLE
+#ifndef LWTRACE_DISABLE
// Note that probe is create on the first pass
// LWTRACE_DECLARE_PROVIDER and LWTRACE_DEFINE_PROVIDER are not needed
// (Provider is created implicitly)
@@ -13,7 +13,7 @@ ui64 Fact() {
"LWTRACE_EXAMPLE_PROVIDER", "FactProbe_" + ToString(N), {}, {"result"});
LWPROBE_OBJ(factProbe, result);
-#endif // LWTRACE_DISABLE
+#endif // LWTRACE_DISABLE
return result;
}
diff --git a/library/cpp/lwtrace/protos/ya.make b/library/cpp/lwtrace/protos/ya.make
index 503d5e515fd..f6e4695ad53 100644
--- a/library/cpp/lwtrace/protos/ya.make
+++ b/library/cpp/lwtrace/protos/ya.make
@@ -1,7 +1,7 @@
PROTO_LIBRARY()
OWNER(serxa)
-
+
INCLUDE_TAGS(GO_PROTO)
SRCS(
diff --git a/library/cpp/lwtrace/ya.make b/library/cpp/lwtrace/ya.make
index d9accb30062..dde958803c5 100644
--- a/library/cpp/lwtrace/ya.make
+++ b/library/cpp/lwtrace/ya.make
@@ -1,7 +1,7 @@
LIBRARY()
OWNER(serxa)
-
+
PEERDIR(
library/cpp/lwtrace/protos
)