| 2861 | |
| 2862 | template <typename CharContainer> |
| 2863 | typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type |
| 2864 | dump(CharContainer& cont, |
| 2865 | const basic_json_encode_options<char_type>& options = basic_json_options<CharT>()) const |
| 2866 | { |
| 2867 | std::error_code ec; |
| 2868 | dump(cont, options, indenting::no_indent, ec); |
| 2869 | if (JSONCONS_UNLIKELY(ec)) |
| 2870 | { |
| 2871 | JSONCONS_THROW(ser_error(ec)); |
| 2872 | } |
| 2873 | } |
| 2874 | |
| 2875 | template <typename CharContainer> |
| 2876 | typename std::enable_if<ext_traits::is_back_insertable_char_container<CharContainer>::value>::type |
no test coverage detected