summaryrefslogtreecommitdiffstats
path: root/fastos
diff options
context:
space:
mode:
Diffstat (limited to 'fastos')
-rw-r--r--fastos/src/vespa/fastos/timestamp.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/fastos/src/vespa/fastos/timestamp.h b/fastos/src/vespa/fastos/timestamp.h
index c01f93205c0..fd46d200b52 100644
--- a/fastos/src/vespa/fastos/timestamp.h
+++ b/fastos/src/vespa/fastos/timestamp.h
@@ -71,9 +71,7 @@ public:
void start() { _startTime = this->now(); _stopTime = _startTime; }
void stop() { _stopTime = this->now(); }
- TimeStamp elapsedAdjusted() const { return this->adjustTick2Sec(elapsed()); }
TimeStamp startTime() const { return this->adjustTick2Sec(_startTime); }
- TimeStamp stopTime() const { return this->adjustTick2Sec(_stopTime); }
TimeStamp elapsed() const {
TimeStamp diff(_stopTime - _startTime);