12345678910111213141516171819202122 |
- #ifndef BOOST_JSON_DETAIL_CHARCONV_CHARS_FORMAT_HPP
- #define BOOST_JSON_DETAIL_CHARCONV_CHARS_FORMAT_HPP
- namespace boost { namespace json { namespace detail { namespace charconv {
- enum class chars_format : unsigned
- {
- scientific = 1 << 0,
- fixed = 1 << 1,
- hex = 1 << 2,
- general = fixed | scientific
- };
- }}}}
- #endif
|