| 103 | } |
| 104 | |
| 105 | inline bool operator==(const T* p){ |
| 106 | if(obj == p){ |
| 107 | return true; |
| 108 | } |
| 109 | return false; |
| 110 | } |
| 111 | |
| 112 | inline bool operator!=(const T* p){ |
| 113 | return !operator==(p); |
nothing calls this directly
no outgoing calls
no test coverage detected