summaryrefslogtreecommitdiff
path: root/src/common/string_util.cpp
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot2015-06-20 22:33:54 +0100
committerGravatar Emmanuel Gil Peyrot2015-06-28 00:36:53 +0100
commit13e6876463078ee0597b3677a26ccaa2a5ff8b35 (patch)
treececef3e8567cfb625334f522e155f2b71141e36b /src/common/string_util.cpp
parentCommon: Fix FileUtil includes, and everything relying on those. (diff)
downloadyuzu-13e6876463078ee0597b3677a26ccaa2a5ff8b35.tar.gz
yuzu-13e6876463078ee0597b3677a26ccaa2a5ff8b35.tar.xz
yuzu-13e6876463078ee0597b3677a26ccaa2a5ff8b35.zip
Common: Fix string_util includes.
Diffstat (limited to '')
-rw-r--r--src/common/string_util.cpp9
1 files changed, 7 insertions, 2 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