| 6843 | } |
| 6844 | |
| 6845 | bool end_array() |
| 6846 | { |
| 6847 | JSON_ASSERT(!ref_stack.empty()); |
| 6848 | JSON_ASSERT(ref_stack.back()->is_array()); |
| 6849 | |
| 6850 | ref_stack.back()->set_parents(); |
| 6851 | ref_stack.pop_back(); |
| 6852 | return true; |
| 6853 | } |
| 6854 | |
| 6855 | template<class Exception> |
| 6856 | bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, |