Files
YYCCommonplace/cmake/check_charconv/from_chars_float.cpp
T

17 lines
400 B
C++
Raw Normal View History

2026-01-23 14:37:21 +08:00
#include <charconv>
int main(int argc, char **argv) {
const char probe[] = "0.0";
const char* first = probe;
const char* last = first + sizeof(probe);
{
float value;
auto rv = std::from_chars(first, last, value, std::chars_format::general);
}
{
double value;
auto rv = std::from_chars(first, last, value, std::chars_format::general);
}
}