| 193 | /*--------------------------------- comparative operators */ |
| 194 | |
| 195 | __inline_call bool_type operator== ( |
| 196 | self_type const& _src |
| 197 | ) const |
| 198 | { /*--------------------- equal to */ |
| 199 | return this->_ptr == _src._ptr ; |
| 200 | } |
| 201 | __inline_call bool_type operator!= ( |
| 202 | self_type const& _src |
| 203 | ) const |
nothing calls this directly
no outgoing calls
no test coverage detected