fixed typo

master
Daniel Kolesa 2015-07-25 02:07:51 +01:00
parent 178e6d2ae2
commit 6c28e6dd66
1 changed files with 1 additions and 1 deletions

View File

@ -623,7 +623,7 @@ bool concat(R &&sink, std::initializer_list<T> v, ConstCharRange sep, F func) {
}
template<typename R, typename T>
String concat(R &&sink, std::initializer_list<T> v, ConstCharRange sep = " ") {
bool concat(R &&sink, std::initializer_list<T> v, ConstCharRange sep = " ") {
return concat(sink, ostd::iter(v), sep);
}