diff options
author | Chris Robinson <[email protected]> | 2019-07-28 11:28:36 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-07-28 11:28:36 -0700 |
commit | 5428d6acc37e33802b0b66b2f9cdc0a37dd36429 (patch) | |
tree | e8e159f6b612e246a97e23d14f47a25f1996b35d /OpenAL32/alState.cpp | |
parent | 659b6d4245b92a7dba3a1b1693db6de8ddf999eb (diff) |
Clean up includes a bit
Trying out the IWYU tool to only include what's necessary in a given file.
Seems to work decently (it'll miss some headers, suggest unnecessary ones, and
make nonsense suggestions for some things, but overall gives a good starting
point), and helps clean out some headers.
Diffstat (limited to 'OpenAL32/alState.cpp')
-rw-r--r-- | OpenAL32/alState.cpp | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/OpenAL32/alState.cpp b/OpenAL32/alState.cpp index 0c447645..f2c38bb2 100644 --- a/OpenAL32/alState.cpp +++ b/OpenAL32/alState.cpp @@ -22,17 +22,26 @@ #include "version.h" -#include <stdlib.h> +#include <atomic> #include <cmath> +#include <cstdlib> +#include <cstring> +#include <mutex> +#include "AL/al.h" +#include "AL/alc.h" +#include "AL/alext.h" + +#include "alError.h" #include "alMain.h" #include "alcontext.h" -#include "alu.h" -#include "alError.h" #include "alexcpt.h" +#include "almalloc.h" #include "alspan.h" - -#include "backends/base.h" +#include "alu.h" +#include "atomic.h" +#include "inprogext.h" +#include "opthelpers.h" namespace { |