Skip to content

Commit

Permalink
fix missing typename
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Jan 28, 2024
1 parent c7e45fe commit fade235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fast_float/parse_number.h
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit fade235

Please sign in to comment.