| 5675 | // != operators |
| 5676 | template < typename U > |
| 5677 | bool operator !=( U rhs ) const throw() |
| 5678 | { |
| 5679 | return !EqualityTest< T, U, ValidComparison< T, U >::method >::IsEquals( m_int, rhs ); |
| 5680 | } |
| 5681 | |
| 5682 | bool operator !=( bool b ) const throw() |
| 5683 | { |
nothing calls this directly
no outgoing calls
no test coverage detected