modernize: Use override instead of virtual
[quassel.git] / src / core / coreeventmanager.h
index eb6d912..90c3838 100644 (file)
@@ -36,7 +36,7 @@ public:
     {}
 
 protected:
-    inline Network *networkById(NetworkId id) const { return _coreSession->network(id); }
+    inline Network *networkById(NetworkId id) const override { return _coreSession->network(id); }
 
 private:
     CoreSession *_coreSession;