aboutsummaryrefslogtreecommitdiff
path: root/src/conversion.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/conversion.hpp')
-rw-r--r--src/conversion.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conversion.hpp b/src/conversion.hpp
index 9f6f933..f0bbc04 100644
--- a/src/conversion.hpp
+++ b/src/conversion.hpp
@@ -29,4 +29,4 @@ static constexpr auto IS_UINT_IN_RANGE = ctll::fixed_string("^[0-9]{1,19}$");
* @param str A string that possibly is a unsigned integer
* @returns A conversion result
*/
-ConversionResult<uint32_t> str_to_uint(const std::string_view &str) noexcept;
+auto str_to_uint(const std::string_view &str) noexcept -> ConversionResult<uint32_t>;