aboutsummaryrefslogtreecommitdiffstats
path: root/storageframework
diff options
context:
space:
mode:
authorTor Brede Vekterli <vekterli@yahooinc.com>2022-03-18 16:37:19 +0000
committerTor Brede Vekterli <vekterli@yahooinc.com>2022-03-18 16:37:19 +0000
commit9aeff921406eb238bedf0210803b1bea441030aa (patch)
tree1901bd8359ca031ffdd3bd9ec380c74f3a067151 /storageframework
parent9be87dcfc81d88b7aa5df918047ba3ab977b6c3f (diff)
Clean up and refactor visitor management code
Diffstat (limited to 'storageframework')
-rw-r--r--storageframework/src/vespa/storageframework/generic/clock/clock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/storageframework/src/vespa/storageframework/generic/clock/clock.h b/storageframework/src/vespa/storageframework/generic/clock/clock.h
index becd17da8a8..c9b8f652bfe 100644
--- a/storageframework/src/vespa/storageframework/generic/clock/clock.h
+++ b/storageframework/src/vespa/storageframework/generic/clock/clock.h
@@ -21,7 +21,7 @@ namespace storage::framework {
struct Clock {
using UP = std::unique_ptr<Clock>;
- virtual ~Clock() {}
+ virtual ~Clock() = default;
virtual MicroSecTime getTimeInMicros() const = 0;
virtual MilliSecTime getTimeInMillis() const = 0;