diff options
author | Chris Robinson <[email protected]> | 2019-09-22 12:23:41 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-09-22 12:23:41 -0700 |
commit | 95996effaf04c87b7091c904e6545bc1e5e25aee (patch) | |
tree | 70068093db98249b3fb33dc3c52b6079630bcd46 /alc/alconfig.cpp | |
parent | 9c95f62e95a76059548762f2e7d2e9bb0e8d4631 (diff) |
Move the ifstream wrapper to common
Diffstat (limited to 'alc/alconfig.cpp')
-rw-r--r-- | alc/alconfig.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/alc/alconfig.cpp b/alc/alconfig.cpp index b266fe5b..ede39156 100644 --- a/alc/alconfig.cpp +++ b/alc/alconfig.cpp @@ -41,15 +41,17 @@ #include <CoreFoundation/CoreFoundation.h> #endif -#include <vector> -#include <string> #include <algorithm> +#include <cstdio> +#include <string> +#include <utility> -#include "alcmain.h" +#include "alfstream.h" #include "alstring.h" +#include "compat.h" #include "logging.h" #include "strutils.h" -#include "compat.h" +#include "vector.h" namespace { |