aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/mixvoice.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/mixvoice.cpp
parent4169c6f37db4fa1cc8e2d052b377af479763a930 (diff)
Remove redundant void argument list in function def
Diffstat (limited to 'Alc/mixvoice.cpp')
-rw-r--r--Alc/mixvoice.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/Alc/mixvoice.cpp b/Alc/mixvoice.cpp
index e0c446a2..7d30ad12 100644
--- a/Alc/mixvoice.cpp
+++ b/Alc/mixvoice.cpp
@@ -61,7 +61,7 @@ RowMixerFunc MixRowSamples = MixRow_C;
static HrtfMixerFunc MixHrtfSamples = MixHrtf_C;
static HrtfMixerBlendFunc MixHrtfBlendSamples = MixHrtfBlend_C;
-static MixerFunc SelectMixer(void)
+static MixerFunc SelectMixer()
{
#ifdef HAVE_NEON
if((CPUCapFlags&CPU_CAP_NEON))
@@ -74,7 +74,7 @@ static MixerFunc SelectMixer(void)
return Mix_C;
}
-static RowMixerFunc SelectRowMixer(void)
+static RowMixerFunc SelectRowMixer()
{
#ifdef HAVE_NEON
if((CPUCapFlags&CPU_CAP_NEON))
@@ -87,7 +87,7 @@ static RowMixerFunc SelectRowMixer(void)
return MixRow_C;
}
-static inline HrtfMixerFunc SelectHrtfMixer(void)
+static inline HrtfMixerFunc SelectHrtfMixer()
{
#ifdef HAVE_NEON
if((CPUCapFlags&CPU_CAP_NEON))
@@ -100,7 +100,7 @@ static inline HrtfMixerFunc SelectHrtfMixer(void)
return MixHrtf_C;
}
-static inline HrtfMixerBlendFunc SelectHrtfBlendMixer(void)
+static inline HrtfMixerBlendFunc SelectHrtfBlendMixer()
{
#ifdef HAVE_NEON
if((CPUCapFlags&CPU_CAP_NEON))
@@ -152,7 +152,7 @@ ResamplerFunc SelectResampler(Resampler resampler)
}
-void aluInitMixer(void)
+void aluInitMixer()
{
const char *str;