aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/lwtrace/example5/lwtrace_example5.cpp
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/example5/lwtrace_example5.cpp
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/example5/lwtrace_example5.cpp')
-rw-r--r--library/cpp/lwtrace/example5/lwtrace_example5.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/lwtrace/example5/lwtrace_example5.cpp b/library/cpp/lwtrace/example5/lwtrace_example5.cpp
index 1c324473c2..11aee7568f 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;
}