From d2ddb8249993e44c31a0b2a13dbb2f4e8b2e35f6 Mon Sep 17 00:00:00 2001 From: q66 Date: Wed, 27 May 2015 22:32:35 +0100 Subject: [PATCH] swap args --- octa/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octa/string.h b/octa/string.h index 27bff6e..43e62c1 100644 --- a/octa/string.h +++ b/octa/string.h @@ -131,7 +131,7 @@ namespace octa { typedef StringBase String; template - 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 (;;) {