From 181710ee5845c5abe714fcf56ff6496bc736ffe0 Mon Sep 17 00:00:00 2001 From: Daira Hopwood Date: Fri, 1 Jul 2022 13:48:19 +0100 Subject: [PATCH] Apply cosmetic suggestions --- src/utiltime.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/utiltime.h b/src/utiltime.h index 821dd372a..507d102bc 100644 --- a/src/utiltime.h +++ b/src/utiltime.h @@ -24,8 +24,8 @@ class SystemClock: public CClock { private: SystemClock() {} ~SystemClock() {} - SystemClock(SystemClock const&) = delete; - SystemClock& operator=(const SystemClock&)= delete; + SystemClock(SystemClock const&) = delete; + SystemClock& operator=(const SystemClock&) = delete; public: static SystemClock* Instance() { static SystemClock instance; @@ -47,8 +47,8 @@ private: FixedClock(): nFixedTime(0) {} ~FixedClock() {} - FixedClock(FixedClock const&) = delete; - FixedClock& operator=(const FixedClock&)= delete; + FixedClock(FixedClock const&) = delete; + FixedClock& operator=(const FixedClock&) = delete; void Set(int64_t nFixedTime) { this->nFixedTime = nFixedTime; @@ -77,8 +77,8 @@ private: OffsetClock(): nOffsetSeconds(0) {} ~OffsetClock() {} - OffsetClock(OffsetClock const&) = delete; - OffsetClock& operator=(const OffsetClock&)= delete; + OffsetClock(OffsetClock const&) = delete; + OffsetClock& operator=(const OffsetClock&) = delete; void Set(int64_t nOffsetSeconds) { this->nOffsetSeconds = nOffsetSeconds;