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