| 56 | ~GenericJsonPointerNode() = default; |
| 57 | |
| 58 | bool operator==(const GenericJsonPointerNode& rhs) const { |
| 59 | return IsStr() ? str_ == rhs.str_ : num_ == rhs.num_; |
| 60 | } |
| 61 | bool operator!=(const GenericJsonPointerNode& rhs) const { |
| 62 | return !(*this == rhs); |
| 63 | } |
nothing calls this directly
no outgoing calls
no test coverage detected