aboutsummaryrefslogtreecommitdiffstats
path: root/util/datetime/cputimer.cpp
diff options
context:
space:
mode:
authoronpopov <onpopov@yandex-team.ru>2022-02-10 16:50:38 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:38 +0300
commit8773f7661194d4c0bdb1e3937b2ff7ae01dd13f8 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /util/datetime/cputimer.cpp
parent84a29dd4980d5b39615e453f289bd1a81213296d (diff)
downloadydb-8773f7661194d4c0bdb1e3937b2ff7ae01dd13f8.tar.gz
Restoring authorship annotation for <onpopov@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/datetime/cputimer.cpp')
-rw-r--r--util/datetime/cputimer.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/datetime/cputimer.cpp b/util/datetime/cputimer.cpp
index 846f63ee18..516d372c37 100644
--- a/util/datetime/cputimer.cpp
+++ b/util/datetime/cputimer.cpp
@@ -19,15 +19,15 @@
TTimer::TTimer(const TStringBuf message) {
static const int SMALL_DURATION_CHAR_LENGTH = 9; // strlen("0.123456s")
Message_.Reserve(message.length() + SMALL_DURATION_CHAR_LENGTH + 1); // +"\n"
- Message_ << message;
- // Do not measure the allocations above.
+ Message_ << message;
+ // Do not measure the allocations above.
Start_ = TInstant::Now();
}
TTimer::~TTimer() {
- const TDuration duration = TInstant::Now() - Start_;
- Message_ << duration << "\n";
- Cerr << Message_.Str();
+ const TDuration duration = TInstant::Now() - Start_;
+ Message_ << duration << "\n";
+ Cerr << Message_.Str();
}
static ui64 ManuallySetCyclesPerSecond = 0;