! @brief compares two JSON pointers for inequality @param[in] lhs JSON pointer to compare @param[in] rhs JSON pointer to compare @return whether @a lhs is not equal @a rhs @complexity Linear in the length of the JSON pointer @exceptionsafety No-throw guarantee: this function never throws exceptions. */
| 12499 | @exceptionsafety No-throw guarantee: this function never throws exceptions. |
| 12500 | */ |
| 12501 | friend bool operator!=(json_pointer const& lhs, |
| 12502 | json_pointer const& rhs) noexcept |
| 12503 | { |
| 12504 | return !(lhs == rhs); |
| 12505 | } |
| 12506 | |
| 12507 | /// the reference tokens |
| 12508 | std::vector<std::string> reference_tokens; |
nothing calls this directly
no test coverage detected