@brief append an unescaped token at the end of the reference pointer @sa https://json.nlohmann.me/api/json_pointer/push_back/
| 13862 | /// @brief append an unescaped token at the end of the reference pointer |
| 13863 | /// @sa https://json.nlohmann.me/api/json_pointer/push_back/ |
| 13864 | void push_back(const string_t& token) |
| 13865 | { |
| 13866 | reference_tokens.push_back(token); |
| 13867 | } |
| 13868 | |
| 13869 | /// @brief append an unescaped token at the end of the reference pointer |
| 13870 | /// @sa https://json.nlohmann.me/api/json_pointer/push_back/ |
no test coverage detected