summaryrefslogtreecommitdiff
path: root/src/common/string_util.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/common/string_util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/string_util.cpp b/src/common/string_util.cpp
index ea9d8f77c..0027888c7 100644
--- a/src/common/string_util.cpp
+++ b/src/common/string_util.cpp
@@ -134,7 +134,7 @@ bool SplitPath(const std::string& full_path, std::string* _pPath, std::string* _
134 size_t dir_end = full_path.find_last_of("/" 134 size_t dir_end = full_path.find_last_of("/"
135// windows needs the : included for something like just "C:" to be considered a directory 135// windows needs the : included for something like just "C:" to be considered a directory
136#ifdef _WIN32 136#ifdef _WIN32
137 ":" 137 "\\:"
138#endif 138#endif
139 ); 139 );
140 if (std::string::npos == dir_end) 140 if (std::string::npos == dir_end)