diff options
author | Peter Powell <petpow@saberuk.com> | 2015-02-28 05:39:24 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2015-03-06 16:13:11 +0000 |
commit | cd5d78203beeba0e6d07e47d67913166990feb2a (patch) | |
tree | be2de24745bc2a80ca0b30847c73f264951b3174 /include | |
parent | 1dc79dcdff4d68db4c1e0925bc9e747615bb3156 (diff) |
Fix building modules that use cap.h with a C++11 compiler.
Diffstat (limited to 'include')
-rw-r--r-- | include/modules/cap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/modules/cap.h b/include/modules/cap.h index 7aa60cd21..b1bfbc3f9 100644 --- a/include/modules/cap.h +++ b/include/modules/cap.h @@ -55,7 +55,7 @@ class GenericCap : public Events::ModuleEventListener { } - void OnCapEvent(CapEvent& ev) CXX11_OVERRIDE + void OnCapEvent(CapEvent& ev) { if (!active) return; |