Direct namespace usage removed from fixed_string

This commit is contained in:
Mateusz Pusz
2020-03-27 15:21:42 +01:00
parent f5df68253e
commit f75a69da9a

View File

@@ -60,7 +60,7 @@ struct basic_fixed_string {
for (size_t i = 0; i != N; ++i) txt[i] = lhs[i];
for (size_t i = 0; i != N2; ++i) txt[N + i] = rhs[i];
return units::basic_fixed_string<CharT, N + N2>(txt);
return basic_fixed_string<CharT, N + N2>(txt);
}
#if __GNUC__ >= 10