aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/effects/dedicated.cpp
diff options
context:
space:
mode:
authorFilip Gawin <[email protected]>2019-01-09 19:43:54 +0100
committerFilip Gawin <[email protected]>2019-01-09 19:43:54 +0100
commit6ddb2c36fc19f0bdcd46ff56536525325d4d3bc5 (patch)
tree6a3a30275aa10a898e064d89648e4971cd81f1a7 /Alc/effects/dedicated.cpp
parent4169c6f37db4fa1cc8e2d052b377af479763a930 (diff)
Remove redundant void argument list in function def
Diffstat (limited to 'Alc/effects/dedicated.cpp')
-rw-r--r--Alc/effects/dedicated.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/dedicated.cpp b/Alc/effects/dedicated.cpp
index 2571d510..64b24e9d 100644
--- a/Alc/effects/dedicated.cpp
+++ b/Alc/effects/dedicated.cpp
@@ -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;