diff options
Diffstat (limited to 'include/Support/Timer.h')
-rw-r--r-- | include/Support/Timer.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/Support/Timer.h b/include/Support/Timer.h index 40ab643..5cacada 100644 --- a/include/Support/Timer.h +++ b/include/Support/Timer.h @@ -28,7 +28,6 @@ #include <string> #include <vector> #include <iosfwd> - #include <assert.h> class TimerGroup; @@ -64,7 +63,7 @@ public: PeakMemBase = T.PeakMemBase; Name = T.Name; Started = T.Started; - assert (TG == T.TG && "Can only assign timers in the same TimerGroup!"); + assert(TG == T.TG && "Can only assign timers in the same TimerGroup!"); return *this; } |