diff options
author | Chris Robinson <[email protected]> | 2023-12-11 18:59:54 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-12-11 18:59:54 -0800 |
commit | 60aa22f20d63a3da9f06b9398a2a8656ebbd0342 (patch) | |
tree | c6067ff97fd013906309d2fafd5e41a5447fee29 /alc/backends/opensl.cpp | |
parent | e79e5a978df22a5e5967169cf62cf46f3456d833 (diff) |
Mostly finish cleanup for backends
Except CoreAudio and Solaris backends
Diffstat (limited to 'alc/backends/opensl.cpp')
-rw-r--r-- | alc/backends/opensl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/alc/backends/opensl.cpp b/alc/backends/opensl.cpp index 3d99e93f..75b6e30d 100644 --- a/alc/backends/opensl.cpp +++ b/alc/backends/opensl.cpp @@ -23,10 +23,10 @@ #include "opensl.h" -#include <stdlib.h> #include <jni.h> #include <array> +#include <cstdlib> #include <cstring> #include <mutex> #include <new> @@ -56,6 +56,7 @@ namespace { #define VCALL0(obj, func) ((*(obj))->func((obj) EXTRACT_VCALL_ARGS +/* NOLINTNEXTLINE(*-avoid-c-arrays) */ constexpr char opensl_device[] = "OpenSL"; |