@brief append an unescaped token at the end of the reference pointer @sa https://json.nlohmann.me/api/json_pointer/push_back/
| 13900 | /// @brief append an unescaped token at the end of the reference pointer |
| 13901 | /// @sa https://json.nlohmann.me/api/json_pointer/push_back/ |
| 13902 | void push_back(const string_t& token) |
| 13903 | { |
| 13904 | reference_tokens.push_back(token); |
| 13905 | } |
| 13906 | |
| 13907 | /// @brief append an unescaped token at the end of the reference pointer |
| 13908 | /// @sa https://json.nlohmann.me/api/json_pointer/push_back/ |
no test coverage detected