From fade2357ba556a0d65821f7d2f8cda5cb8d54421 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Sun, 28 Jan 2024 11:46:27 -0500 Subject: [PATCH] fix missing typename --- include/fast_float/parse_number.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fast_float/parse_number.h b/include/fast_float/parse_number.h index e7ed8353..1f11a7c3 100644 --- a/include/fast_float/parse_number.h +++ b/include/fast_float/parse_number.h @@ -185,7 +185,7 @@ struct from_chars_caller #endif -template +template from_chars_result_t from_chars(UC const * first, UC const * last, T &value, chars_format fmt /*= chars_format::general*/) noexcept { return from_chars_caller::call(first, last, value, parse_options_t(fmt));