summaryrefslogtreecommitdiff
path: root/src/string.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/string.cc')
-rw-r--r--src/string.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string.cc b/src/string.cc
index 042bba77..2152cb15 100644
--- a/src/string.cc
+++ b/src/string.cc
@@ -30,7 +30,7 @@ int str_to_int(const String& str)
return atoi(str.c_str());
}
-std::vector<String> split(const String& str, Character separator)
+std::vector<String> split(const String& str, char separator)
{
auto begin = str.begin();
auto end = str.begin();