123456789101112131415161718192021222324252627282930313233 |
- #ifndef BOOST_JSON_DETAIL_CHARCONV_FROM_CHARS_HPP_INCLUDED
- #define BOOST_JSON_DETAIL_CHARCONV_FROM_CHARS_HPP_INCLUDED
- #include <boost/json/detail/charconv/detail/config.hpp>
- #include <boost/json/detail/charconv/detail/from_chars_result.hpp>
- #include <boost/json/detail/charconv/chars_format.hpp>
- #include <system_error>
- namespace boost { namespace json { namespace detail { namespace charconv {
- namespace detail {
- std::errc errno_to_errc(int errno_value) noexcept;
- }
- BOOST_JSON_DECL from_chars_result from_chars(const char* first, const char* last, double& value, chars_format fmt = chars_format::general) noexcept;
- }
- }
- }
- }
- #endif
|