aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/helpers.cpp
diff options
context:
space:
mode:
authorFilip Gawin <[email protected]>2019-01-09 19:42:40 +0100
committerFilip Gawin <[email protected]>2019-01-09 19:42:40 +0100
commit4169c6f37db4fa1cc8e2d052b377af479763a930 (patch)
treeaedd04c62d0edb41fe351d0fa4c94e87d00d71f2 /Alc/helpers.cpp
parent8f35f464a1b3ae1b8772a4645941a1fb2fec006e (diff)
Use c++ headers
Diffstat (limited to 'Alc/helpers.cpp')
-rw-r--r--Alc/helpers.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/Alc/helpers.cpp b/Alc/helpers.cpp
index 88c222bf..598555ab 100644
--- a/Alc/helpers.cpp
+++ b/Alc/helpers.cpp
@@ -28,11 +28,11 @@
#include "config.h"
-#include <stdlib.h>
-#include <time.h>
-#include <errno.h>
-#include <stdarg.h>
-#include <ctype.h>
+#include <cstdlib>
+#include <ctime>
+#include <cerrno>
+#include <cstdarg>
+#include <cctype>
#ifdef HAVE_MALLOC_H
#include <malloc.h>
#endif
@@ -93,7 +93,7 @@ DEFINE_PROPERTYKEY(PKEY_AudioEndpoint_GUID, 0x1da5d803, 0xd492, 0x4edd, 0x8c, 0x
#include <sys/sysconf.h>
#endif
#ifdef HAVE_FLOAT_H
-#include <float.h>
+#include <cfloat>
#endif
#ifdef HAVE_IEEEFP_H
#include <ieeefp.h>