From 9b9ac972ee58c126169160bb7f28f0cac47249a7 Mon Sep 17 00:00:00 2001 From: q66 Date: Fri, 5 Aug 2016 16:59:17 +0100 Subject: [PATCH] no need for namespace --- main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cc b/main.cc index b3a568f..d42a589 100644 --- a/main.cc +++ b/main.cc @@ -681,7 +681,7 @@ int main(int argc, char **argv) { } auto dot = ostd::find_last(it, '.'); if (!dot.empty() && ((dot + 1) == oldext)) { - ret += ostd::slice_until(it, dot); + ret += slice_until(it, dot); ret += '.'; ret += newext; } else {