diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2014-02-20 04:11:52 +0100 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2014-02-22 23:37:29 +0100 |
| commit | 83b7bb64aa5e1ee6b18eaa5d08c17bb5b6c57048 (patch) | |
| tree | 9b633ca7531de6e36a49216ac2db91e8e7879bae /Source/Core/Common/CDUtils.cpp | |
| parent | 65bbfdb8123b4ea3e15b967b5b03b4b4335c0040 (diff) | |
Make Common/ mostly IWYU clean (and fix errors in rest of the project detected by this change).
Diffstat (limited to 'Source/Core/Common/CDUtils.cpp')
| -rw-r--r-- | Source/Core/Common/CDUtils.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/Core/Common/CDUtils.cpp b/Source/Core/Common/CDUtils.cpp index 156b758749..4adcf7cee9 100644 --- a/Source/Core/Common/CDUtils.cpp +++ b/Source/Core/Common/CDUtils.cpp @@ -1,6 +1,9 @@ // Most of the code in this file was shamelessly ripped from libcdio With minor adjustments -#include <memory> // for std::unique_ptr +#include <algorithm> +#include <cstdlib> +#include <string> +#include <vector> #include "Common/CDUtils.h" #include "Common/Common.h" @@ -19,6 +22,7 @@ #include <fcntl.h> #include <sys/stat.h> #include <sys/ioctl.h> +#include <unistd.h> #endif // WIN32 #ifdef __linux__ |
