summaryrefslogtreecommitdiff
path: root/LibCore/CElapsedTimer.h
diff options
context:
space:
mode:
Diffstat (limited to 'LibCore/CElapsedTimer.h')
-rw-r--r--LibCore/CElapsedTimer.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/LibCore/CElapsedTimer.h b/LibCore/CElapsedTimer.h
index bb8fa28ac6..76fa304478 100644
--- a/LibCore/CElapsedTimer.h
+++ b/LibCore/CElapsedTimer.h
@@ -4,7 +4,7 @@
class CElapsedTimer {
public:
- CElapsedTimer() { }
+ CElapsedTimer() {}
bool is_valid() const { return m_valid; }
void start();
@@ -12,5 +12,7 @@ public:
private:
bool m_valid { false };
- struct timeval m_start_time { 0, 0 };
+ struct timeval m_start_time {
+ 0, 0
+ };
};