no need for namespace

master
Daniel Kolesa 2016-08-05 16:59:17 +01:00
parent 9f91360299
commit 9b9ac972ee
1 changed files with 1 additions and 1 deletions

View File

@ -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 {