diff options
author | Andrey Fomichev <andrey.fomichev@gmail.com> | 2022-02-10 16:49:12 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:12 +0300 |
commit | e542cc14db4240643a06bb0dde87ecf361f101ab (patch) | |
tree | 3b03a4b94acd11a4eca042532035806e5fa08ad1 /library/cpp/lwtrace/example5/lwtrace_example5.cpp | |
parent | e2ac73225f30f7fcf7df3cb225cba257f56144c1 (diff) | |
download | ydb-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.cpp | 4 |
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; } |