diff options
author | kcat <[email protected]> | 2019-01-09 17:16:28 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2019-01-09 17:16:28 -0800 |
commit | 30184613a53c9eb013fee10403aa9cd97d4ea5e1 (patch) | |
tree | a3dd40b59196464c12c9d8d585100c5226ffb3b2 /Alc/effects/dedicated.cpp | |
parent | 8f35f464a1b3ae1b8772a4645941a1fb2fec006e (diff) | |
parent | f7fe15e1cec05a4c9e6a6a207bdb34397086cffc (diff) |
Merge pull request #264 from ShFil119/impr/cleanup
Cleanup continuation
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; |