| 65 | template <typename OtherObjectType> bool operator== (const OtherObjectType& other) const noexcept { return target == getPointer (other); } |
| 66 | template <typename OtherObjectType> bool operator!= (const OtherObjectType& other) const noexcept { return target != getPointer (other); } |
| 67 | template <typename OtherObjectType> bool operator< (const OtherObjectType& other) const noexcept { return target < getPointer (other); } |
| 68 | |
| 69 | private: |
| 70 | ObjectType* target; |
nothing calls this directly
no outgoing calls
no test coverage detected