aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/lwtrace
diff options
context:
space:
mode:
authorAndrey Fomichev <andrey.fomichev@gmail.com>2022-02-10 16:49:15 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:15 +0300
commit1c61afbf3db63940d05e6fefa3104b03457788a1 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/lwtrace
parente542cc14db4240643a06bb0dde87ecf361f101ab (diff)
downloadydb-1c61afbf3db63940d05e6fefa3104b03457788a1.tar.gz
Restoring authorship annotation for Andrey Fomichev <andrey.fomichev@gmail.com>. Commit 2 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 11aee7568f..1c324473c2 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 f6e4695ad5..503d5e515f 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 dde958803c..d9accb3006 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
)