summaryrefslogtreecommitdiff
path: root/src/modules/extra
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2020-04-10 01:28:59 +0100
committerSadie Powell <sadie@witchery.services>2020-04-10 01:28:59 +0100
commit5491e01bc3279742d0b0196d570800e7d24abd0c (patch)
treeb22938314252f03cdd4920f18c3c2324dd1b3aae /src/modules/extra
parent103267efa4b754ad0a816fbcc01d7ba3f22d8107 (diff)
The init function should have the override keyword too.
Diffstat (limited to 'src/modules/extra')
-rw-r--r--src/modules/extra/m_sslrehashsignal.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_sslrehashsignal.cpp b/src/modules/extra/m_sslrehashsignal.cpp
index f5b3563b2..057d56fee 100644
--- a/src/modules/extra/m_sslrehashsignal.cpp
+++ b/src/modules/extra/m_sslrehashsignal.cpp
@@ -35,7 +35,7 @@ class ModuleSSLRehashSignal : public Module
signal(SIGUSR1, SIG_IGN);
}
- void init()
+ void init() CXX11_OVERRIDE
{
signal(SIGUSR1, SignalHandler);
}