diff options
author | Chris Robinson <[email protected]> | 2019-07-28 21:29:59 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-07-28 21:29:59 -0700 |
commit | d38d2553649555714bfe20f8ca72614974993d47 (patch) | |
tree | 2eefae41a5578056b610d9db0cf7293b6949e2b5 /alc/ringbuffer.cpp | |
parent | 83432a7e5c7f565a08c41bb104ae25286c5fc82b (diff) |
More include cleanups
Diffstat (limited to 'alc/ringbuffer.cpp')
-rw-r--r-- | alc/ringbuffer.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/alc/ringbuffer.cpp b/alc/ringbuffer.cpp index 6ef576a5..d99676b8 100644 --- a/alc/ringbuffer.cpp +++ b/alc/ringbuffer.cpp @@ -20,17 +20,13 @@ #include "config.h" -#include <cstring> -#include <cstdlib> -#include <climits> +#include "ringbuffer.h" #include <algorithm> +#include <climits> +#include <cstdint> -#include "ringbuffer.h" -#include "atomic.h" -#include "threads.h" #include "almalloc.h" -#include "compat.h" RingBufferPtr CreateRingBuffer(size_t sz, size_t elem_sz, int limit_writes) |