v1
Brett 2024-02-04 14:39:25 -05:00
parent 83729b83d0
commit db158fcff3
1 changed files with 1 additions and 0 deletions

View File

@ -58,6 +58,7 @@ namespace blt::parse
T get(std::string_view str) T get(std::string_view str)
{ {
T x; T x;
// TODO: GCC version. C++17 supports from_chars but GCC8.5 doesn't have floating point.
#if __cplusplus >= BLT_CPP20 #if __cplusplus >= BLT_CPP20
const auto [ptr, ec] = std::from_chars(str.data(), str.data() + str.size(), x); const auto [ptr, ec] = std::from_chars(str.data(), str.data() + str.size(), x);
#else #else