From 4b0ccb0437576c2d87be07b9865ff78a1c5f0c15 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Mon, 1 Oct 2012 20:20:08 +0200 Subject: String and BufferIterator value_type goes back to plain char --- src/string.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/string.cc') 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 split(const String& str, Character separator) +std::vector split(const String& str, char separator) { auto begin = str.begin(); auto end = str.begin(); -- cgit v1.2.3