diff options
Diffstat (limited to 'src/conversion.cpp')
-rw-r--r-- | src/conversion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conversion.cpp b/src/conversion.cpp index 71ba1b2..79b3587 100644 --- a/src/conversion.cpp +++ b/src/conversion.cpp @@ -3,7 +3,7 @@ #include <climits> #include <stdexcept> -unsigned int str_to_uint(std::string_view str) +unsigned int str_to_uint(const std::string_view &str) { if (str.at(0) == '-') { |