! @brief append an unescaped token at the end of the reference pointer @param[in] token token to add @complexity Amortized constant. @liveexample{The example shows the result of `push_back` for different JSON Pointers.,json_pointer__push_back} @since version 3.6.0 */
| 11824 | @since version 3.6.0 |
| 11825 | */ |
| 11826 | void push_back(const std::string& token) |
| 11827 | { |
| 11828 | reference_tokens.push_back(token); |
| 11829 | } |
| 11830 | |
| 11831 | /// @copydoc push_back(const std::string&) |
| 11832 | void push_back(std::string&& token) |
no outgoing calls