| 6909 | } |
| 6910 | |
| 6911 | bool end_array() |
| 6912 | { |
| 6913 | JSON_ASSERT(!ref_stack.empty()); |
| 6914 | JSON_ASSERT(ref_stack.back()->is_array()); |
| 6915 | |
| 6916 | ref_stack.back()->set_parents(); |
| 6917 | ref_stack.pop_back(); |
| 6918 | return true; |
| 6919 | } |
| 6920 | |
| 6921 | template<class Exception> |
| 6922 | bool parse_error(std::size_t /*unused*/, const std::string& /*unused*/, |