From 6ddb2c36fc19f0bdcd46ff56536525325d4d3bc5 Mon Sep 17 00:00:00 2001 From: Filip Gawin Date: Wed, 9 Jan 2019 19:43:54 +0100 Subject: Remove redundant void argument list in function def --- Alc/effects/distortion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Alc/effects/distortion.cpp') diff --git a/Alc/effects/distortion.cpp b/Alc/effects/distortion.cpp index 95569cda..12eb12fb 100644 --- a/Alc/effects/distortion.cpp +++ b/Alc/effects/distortion.cpp @@ -169,7 +169,7 @@ struct DistortionStateFactory final : public EffectStateFactory { EffectState *DistortionStateFactory::create() { return new ALdistortionState{}; } -EffectStateFactory *DistortionStateFactory_getFactory(void) +EffectStateFactory *DistortionStateFactory_getFactory() { static DistortionStateFactory DistortionFactory{}; return &DistortionFactory; -- cgit v1.2.3