summaryrefslogtreecommitdiff
path: root/lib/common/Timer.h
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2017-10-12 21:27:54 +0100
committerChris Wilson <chris+github@qwirx.com>2017-10-16 22:02:32 +0100
commita631c82882b039f8467a2ef9abeb343f2ec5b3da (patch)
treeb0ae4a2304e386aef4ef031b9d565116e0fa7f02 /lib/common/Timer.h
parentfea4efbf5648dddb63f51b4b076baceb872be87b (diff)
Fix -Wundefined-bool-conversion compile failure of master branch
Master build fails with: lib/common/Timer.cpp:171:10: error: reference cannot be bound to dereferenced null pointer in well-defined C++ code; pointer may be assumed to always convert to true [-Werror,-Wundefined-bool-conversion]. Cannot get regtests to pass on this feature branch without fixing this. Also remove unused code from Timers.
Diffstat (limited to 'lib/common/Timer.h')
-rw-r--r--lib/common/Timer.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/common/Timer.h b/lib/common/Timer.h
index 68592aaa..17233203 100644
--- a/lib/common/Timer.h
+++ b/lib/common/Timer.h
@@ -44,7 +44,6 @@ class Timers
public:
static void Init();
static void Cleanup(bool throw_exception_if_not_initialised = true);
- static void AssertInitialised();
static void Add (Timer& rTimer);
static void Remove(Timer& rTimer);
static void RequestReschedule();