aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/effects
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/effects')
-rw-r--r--Alc/effects/autowah.cpp4
-rw-r--r--Alc/effects/chorus.cpp2
-rw-r--r--Alc/effects/compressor.cpp2
-rw-r--r--Alc/effects/dedicated.cpp2
-rw-r--r--Alc/effects/distortion.cpp4
-rw-r--r--Alc/effects/echo.cpp4
-rw-r--r--Alc/effects/equalizer.cpp4
-rw-r--r--Alc/effects/modulator.cpp4
-rw-r--r--Alc/effects/null.cpp2
-rw-r--r--Alc/effects/reverb.cpp6
10 files changed, 17 insertions, 17 deletions
diff --git a/Alc/effects/autowah.cpp b/Alc/effects/autowah.cpp
index 7df5d49e..19e287fd 100644
--- a/Alc/effects/autowah.cpp
+++ b/Alc/effects/autowah.cpp
@@ -20,8 +20,8 @@
#include "config.h"
-#include <math.h>
-#include <stdlib.h>
+#include <cmath>
+#include <cstdlib>
#include <algorithm>
diff --git a/Alc/effects/chorus.cpp b/Alc/effects/chorus.cpp
index 990b3cc4..13a35c54 100644
--- a/Alc/effects/chorus.cpp
+++ b/Alc/effects/chorus.cpp
@@ -20,7 +20,7 @@
#include "config.h"
-#include <stdlib.h>
+#include <cstdlib>
#include <cmath>
#include <algorithm>
diff --git a/Alc/effects/compressor.cpp b/Alc/effects/compressor.cpp
index 1b840c44..c1bb0ba1 100644
--- a/Alc/effects/compressor.cpp
+++ b/Alc/effects/compressor.cpp
@@ -20,7 +20,7 @@
#include "config.h"
-#include <stdlib.h>
+#include <cstdlib>
#include "alMain.h"
#include "alcontext.h"
diff --git a/Alc/effects/dedicated.cpp b/Alc/effects/dedicated.cpp
index f9faa63d..2571d510 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>
diff --git a/Alc/effects/distortion.cpp b/Alc/effects/distortion.cpp
index 1b9c66fa..95569cda 100644
--- a/Alc/effects/distortion.cpp
+++ b/Alc/effects/distortion.cpp
@@ -20,8 +20,8 @@
#include "config.h"
-#include <math.h>
-#include <stdlib.h>
+#include <cmath>
+#include <cstdlib>
#include <cmath>
diff --git a/Alc/effects/echo.cpp b/Alc/effects/echo.cpp
index 697d2e88..cadd62f2 100644
--- a/Alc/effects/echo.cpp
+++ b/Alc/effects/echo.cpp
@@ -20,8 +20,8 @@
#include "config.h"
-#include <math.h>
-#include <stdlib.h>
+#include <cmath>
+#include <cstdlib>
#include <algorithm>
diff --git a/Alc/effects/equalizer.cpp b/Alc/effects/equalizer.cpp
index defe1485..5c531079 100644
--- a/Alc/effects/equalizer.cpp
+++ b/Alc/effects/equalizer.cpp
@@ -20,8 +20,8 @@
#include "config.h"
-#include <math.h>
-#include <stdlib.h>
+#include <cmath>
+#include <cstdlib>
#include <algorithm>
#include <functional>
diff --git a/Alc/effects/modulator.cpp b/Alc/effects/modulator.cpp
index 9549740e..4b7adaba 100644
--- a/Alc/effects/modulator.cpp
+++ b/Alc/effects/modulator.cpp
@@ -20,8 +20,8 @@
#include "config.h"
-#include <math.h>
-#include <stdlib.h>
+#include <cmath>
+#include <cstdlib>
#include <cmath>
#include <algorithm>
diff --git a/Alc/effects/null.cpp b/Alc/effects/null.cpp
index fa35b3c4..9cb73e72 100644
--- a/Alc/effects/null.cpp
+++ b/Alc/effects/null.cpp
@@ -1,6 +1,6 @@
#include "config.h"
-#include <stdlib.h>
+#include <cstdlib>
#include "AL/al.h"
#include "AL/alc.h"
diff --git a/Alc/effects/reverb.cpp b/Alc/effects/reverb.cpp
index a63cc4c3..8ce93339 100644
--- a/Alc/effects/reverb.cpp
+++ b/Alc/effects/reverb.cpp
@@ -20,9 +20,9 @@
#include "config.h"
-#include <stdio.h>
-#include <stdlib.h>
-#include <math.h>
+#include <cstdio>
+#include <cstdlib>
+#include <cmath>
#include <cmath>
#include <algorithm>