diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-05-11 19:30:06 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-05-11 19:30:30 +0200 |
commit | 36b5237d4d3088e5cd344b552dfe70169e7dee42 (patch) | |
tree | 8a1529a21ad5e2f596a10b884b6754a47730a6a8 /compat/timer.cpp | |
parent | 31bab22b5ee7bc18ad4bdb2fb74ed4948a900cc0 (diff) |
fix GCC warnings
Diffstat (limited to 'compat/timer.cpp')
-rw-r--r-- | compat/timer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/timer.cpp b/compat/timer.cpp index 84ea44e6..f60e4f62 100644 --- a/compat/timer.cpp +++ b/compat/timer.cpp @@ -107,7 +107,7 @@ void Timer::gettime(timespec* ts) { int error = clock_gettime(CLOCK_MONOTONIC, ts); assert(error == 0 && "clock_gettime failed"); -}; +} #endif |