fix missing typename

This commit is contained in:
Daniel Lemire 2024-01-28 11:46:27 -05:00
parent c7e45fea9f
commit fade2357ba

View File

@ -185,7 +185,7 @@ struct from_chars_caller<std::float64_t>
#endif
template<typename T, typename UC>
template<typename T, typename UC, typename>
from_chars_result_t<UC> from_chars(UC const * first, UC const * last,
T &value, chars_format fmt /*= chars_format::general*/) noexcept {
return from_chars_caller<T>::call(first, last, value, parse_options_t<UC>(fmt));