aboutsummaryrefslogtreecommitdiffstats
path: root/fastos
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2019-12-05 04:07:01 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2019-12-05 04:07:01 +0000
commit33776ff66467f089bbbac173b3ed662dd1cb342a (patch)
treeada2bc6bdfa20496316202ff50e211574bc3dd07 /fastos
parent4b514ae5364854e9cccf3aee245774a0c5816fc4 (diff)
GC unused constant
Diffstat (limited to 'fastos')
-rw-r--r--fastos/src/vespa/fastos/timestamp.cpp1
-rw-r--r--fastos/src/vespa/fastos/timestamp.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/fastos/src/vespa/fastos/timestamp.cpp b/fastos/src/vespa/fastos/timestamp.cpp
index deceaee4c65..977af69049c 100644
--- a/fastos/src/vespa/fastos/timestamp.cpp
+++ b/fastos/src/vespa/fastos/timestamp.cpp
@@ -76,7 +76,6 @@ ClockSteady::now()
const SteadyTimeStamp SteadyTimeStamp::ZERO;
const SteadyTimeStamp SteadyTimeStamp::FUTURE(TimeStamp::FUTURE);
const UTCTimeStamp UTCTimeStamp::ZERO;
-const UTCTimeStamp UTCTimeStamp::FUTURE(TimeStamp::FUTURE);
UTCTimeStamp
SteadyTimeStamp::toUTC() const {
diff --git a/fastos/src/vespa/fastos/timestamp.h b/fastos/src/vespa/fastos/timestamp.h
index 3814a099e46..f1a40272938 100644
--- a/fastos/src/vespa/fastos/timestamp.h
+++ b/fastos/src/vespa/fastos/timestamp.h
@@ -61,7 +61,6 @@ inline TimeStamp operator *(double a, TimeStamp b) { return TimeStamp(static_cas
class UTCTimeStamp {
public:
static const UTCTimeStamp ZERO;
- static const UTCTimeStamp FUTURE;
UTCTimeStamp() : _timeStamp() { }
explicit UTCTimeStamp(TimeStamp timeStamp) : _timeStamp(timeStamp) { }