diff options
author | Igor Makunin <[email protected]> | 2022-02-10 16:49:35 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:35 +0300 |
commit | f7a438035f19b364b5479caf536990e82b174f38 (patch) | |
tree | 5f15d64d88d75f4cd73740339f36970716572e95 /library/cpp/monlib/counters/timer.h | |
parent | 492d4842b42175970fd597869540936bf152ffb1 (diff) |
Restoring authorship annotation for Igor Makunin <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/monlib/counters/timer.h')
-rw-r--r-- | library/cpp/monlib/counters/timer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/monlib/counters/timer.h b/library/cpp/monlib/counters/timer.h index 03dfb35337f..87bf3c720b1 100644 --- a/library/cpp/monlib/counters/timer.h +++ b/library/cpp/monlib/counters/timer.h @@ -111,7 +111,7 @@ namespace NMonitoring { template <typename TFunc> void Measure(TFunc&& fn) { using TClock = std::chrono::high_resolution_clock; - + auto start = TClock::now(); Y_SCOPE_EXIT(this, start) { |