mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 11:09:04 -04:00
Add missing override keyword to the sslrehashsignal module.
This commit is contained in:
parent
13db096313
commit
85f8879eb2
@ -40,7 +40,7 @@ class ModuleSSLRehashSignal : public Module
|
||||
signal(SIGUSR1, SignalHandler);
|
||||
}
|
||||
|
||||
void OnBackgroundTimer(time_t)
|
||||
void OnBackgroundTimer(time_t) CXX11_OVERRIDE
|
||||
{
|
||||
if (!signaled)
|
||||
return;
|
||||
@ -54,7 +54,7 @@ class ModuleSSLRehashSignal : public Module
|
||||
signaled = 0;
|
||||
}
|
||||
|
||||
Version GetVersion()
|
||||
Version GetVersion() CXX11_OVERRIDE
|
||||
{
|
||||
return Version("Reloads SSL credentials on SIGUSR1", VF_VENDOR);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user