swap args

master
Daniel Kolesa 2015-05-27 22:32:35 +01:00
parent 6885006199
commit d2ddb82499
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ namespace octa {
typedef StringBase<char> String;
template<typename R, typename F>
String concat(R range, F func, String sep) {
String concat(R range, String sep, F func) {
String ret;
if (range.empty()) return move(ret);
for (;;) {