diff options
Diffstat (limited to '')
| -rw-r--r-- | src/common/string_util.cpp | 9 | ||||
| -rw-r--r-- | src/common/string_util.h | 3 |
2 files changed, 9 insertions, 3 deletions
diff --git a/src/common/string_util.cpp b/src/common/string_util.cpp index 7dc0ba7ba..2e80809ab 100644 --- a/src/common/string_util.cpp +++ b/src/common/string_util.cpp | |||
| @@ -2,9 +2,13 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <boost/range/algorithm.hpp> | 5 | #include <cctype> |
| 6 | #include <cerrno> | ||
| 7 | #include <cstdio> | ||
| 8 | #include <cstdlib> | ||
| 9 | #include <cstring> | ||
| 10 | #include <boost/range/algorithm/transform.hpp> | ||
| 6 | 11 | ||
| 7 | #include "common/common_funcs.h" | ||
| 8 | #include "common/common_paths.h" | 12 | #include "common/common_paths.h" |
| 9 | #include "common/logging/log.h" | 13 | #include "common/logging/log.h" |
| 10 | #include "common/string_util.h" | 14 | #include "common/string_util.h" |
| @@ -12,6 +16,7 @@ | |||
| 12 | #ifdef _MSC_VER | 16 | #ifdef _MSC_VER |
| 13 | #include <Windows.h> | 17 | #include <Windows.h> |
| 14 | #include <codecvt> | 18 | #include <codecvt> |
| 19 | #include "common/common_funcs.h" | ||
| 15 | #else | 20 | #else |
| 16 | #include <iconv.h> | 21 | #include <iconv.h> |
| 17 | #endif | 22 | #endif |
diff --git a/src/common/string_util.h b/src/common/string_util.h index fdc410499..c5c474c6f 100644 --- a/src/common/string_util.h +++ b/src/common/string_util.h | |||
| @@ -5,9 +5,10 @@ | |||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <cstdarg> | 7 | #include <cstdarg> |
| 8 | #include <cstddef> | ||
| 8 | #include <iomanip> | 9 | #include <iomanip> |
| 9 | #include <string> | ||
| 10 | #include <sstream> | 10 | #include <sstream> |
| 11 | #include <string> | ||
| 11 | #include <vector> | 12 | #include <vector> |
| 12 | 13 | ||
| 13 | #include "common/common_types.h" | 14 | #include "common/common_types.h" |