summaryrefslogtreecommitdiffstats
path: root/storageframework
diff options
context:
space:
mode:
Diffstat (limited to 'storageframework')
-rw-r--r--storageframework/src/vespa/storageframework/defaultimplementation/clock/realclock.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/storageframework/src/vespa/storageframework/defaultimplementation/clock/realclock.cpp b/storageframework/src/vespa/storageframework/defaultimplementation/clock/realclock.cpp
index f8c3c2a3f99..810eced1b3e 100644
--- a/storageframework/src/vespa/storageframework/defaultimplementation/clock/realclock.cpp
+++ b/storageframework/src/vespa/storageframework/defaultimplementation/clock/realclock.cpp
@@ -3,9 +3,7 @@
#include "realclock.h"
#include <sys/time.h>
-namespace storage {
-namespace framework {
-namespace defaultimplementation {
+namespace storage::framework::defaultimplementation {
MicroSecTime RealClock::getTimeInMicros() const {
struct timeval mytime;
@@ -30,6 +28,4 @@ MonotonicTimePoint RealClock::getMonotonicTime() const {
return std::chrono::steady_clock::now();
}
-} // defaultimplementation
-} // framework
-} // storage
+}