A C++, header-only library for constructing JSON and JSON-like data formats, with JSON Pointer, JSON Patch, JSON Schema, JSONPath, JMESPath, CSV, MessagePack, CBOR, BSON, UBJSON
Out build fails with gcc on windows (MinGW) because it doesn't find the std::from_chars() function.
parse_number.hpp:948:41: error: no matching function for call to 'from_chars(char*, char*, double&)'
const auto res = std::from_chars(input.data(), input.data() + len, val);
in compiler_support.hpp there is already a detection of the feature, but this doesn't work for MinGW (GCC 11.2.0)
Out build fails with gcc on windows (MinGW) because it doesn't find the std::from_chars() function.
in compiler_support.hpp there is already a detection of the feature, but this doesn't work for MinGW (GCC 11.2.0)
To make this work for MinGW (skip the std::from_chars)
What compiler, architecture, and operating system?
What jsoncons library version?