| 6756 | } |
| 6757 | |
| 6758 | bool end_array() |
| 6759 | { |
| 6760 | JSON_ASSERT(!ref_stack.empty()); |
| 6761 | JSON_ASSERT(ref_stack.back()->is_array()); |
| 6762 | |
| 6763 | ref_stack.back()->set_parents(); |
| 6764 | ref_stack.pop_back(); |
| 6765 | return true; |
| 6766 | } |
| 6767 | |
| 6768 | template<class Exception> |
| 6769 | bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, |