diff --git a/lolly/data/string_view.hpp b/lolly/data/string_view.hpp index c25db9881..0d9847ac5 100644 --- a/lolly/data/string_view.hpp +++ b/lolly/data/string_view.hpp @@ -150,7 +150,7 @@ operator<= (const string_view& a, const string_view& b) { template bool operator<= (const string_view& a, const T (&b)[Nb]) { - return a <= string_view (b); + return a <= string_view (b); }; template