diff options
author | Adam <adam@sigterm.info> | 2015-12-31 10:41:37 -0600 |
---|---|---|
committer | Adam <adam@sigterm.info> | 2015-12-31 10:41:37 -0600 |
commit | 17b7508058162a722120dd7a9d95c20b979af2e9 (patch) | |
tree | 4ae2253d945451136959f856de0c58497066b285 /include/threadengine.h | |
parent | 551786efeaf4f297f59bab75e38746ced30a545d (diff) | |
parent | ec85737434466d13f1c0828d1459c6679f8d2565 (diff) |
Merge pull request #140 from SaberUK/master+warnings
Add missing override keyword to methods that require it.
Diffstat (limited to 'include/threadengine.h')
-rw-r--r-- | include/threadengine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/threadengine.h b/include/threadengine.h index 12e0108b5..8a61e9e13 100644 --- a/include/threadengine.h +++ b/include/threadengine.h @@ -55,7 +55,7 @@ class CoreExport Thread : public Pipe /** Called when this thread should be joined to */ - void OnNotify(); + void OnNotify() override; /** Called when the thread is run. */ |