diff options
Diffstat (limited to 'Alc/effects/dedicated.cpp')
-rw-r--r-- | Alc/effects/dedicated.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/effects/dedicated.cpp b/Alc/effects/dedicated.cpp index f9faa63d..64b24e9d 100644 --- a/Alc/effects/dedicated.cpp +++ b/Alc/effects/dedicated.cpp @@ -20,7 +20,7 @@ #include "config.h" -#include <stdlib.h> +#include <cstdlib> #include <cmath> #include <algorithm> @@ -102,7 +102,7 @@ struct DedicatedStateFactory final : public EffectStateFactory { EffectState *DedicatedStateFactory::create() { return new ALdedicatedState{}; } -EffectStateFactory *DedicatedStateFactory_getFactory(void) +EffectStateFactory *DedicatedStateFactory_getFactory() { static DedicatedStateFactory DedicatedFactory{}; return &DedicatedFactory; |