| 1441 | } |
| 1442 | |
| 1443 | void JSONPointer::pop_back() |
| 1444 | { |
| 1445 | if (empty()) |
| 1446 | { |
| 1447 | throw Error{U"JSONPointer::pop_back(): JSON pointer indicates root document, therefore has no parent."}; |
| 1448 | } |
| 1449 | |
| 1450 | m_detail->pointer.pop_back(); |
| 1451 | } |
| 1452 | |
| 1453 | void JSONPointer::pop_back_N(size_t n) |
| 1454 | { |
no test coverage detected