summaryrefslogtreecommitdiff
path: root/src/string.cc
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2012-10-01 20:20:08 +0200
committerMaxime Coste <frrrwww@gmail.com>2012-10-01 20:20:08 +0200
commit4b0ccb0437576c2d87be07b9865ff78a1c5f0c15 (patch)
treeb401d2e557799fdfb10c7503ee54197173bb7a10 /src/string.cc
parentf2f34216371f8f799d2cd5f48b16777af98e0cf8 (diff)
String and BufferIterator value_type goes back to plain char
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();