12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef BOOST_JSON_DETAIL_RYU_HPP
- #define BOOST_JSON_DETAIL_RYU_HPP
- #include <boost/json/detail/config.hpp>
- namespace boost {
- namespace json {
- namespace detail {
- namespace ryu {
- BOOST_JSON_DECL
- int d2s_buffered_n(
- double f, char* result, bool allow_infinity_and_nan = true) noexcept;
- }
- }
- }
- }
- #endif
|