| 5035 | |
| 5036 | template < typename T, typename U > |
| 5037 | inline bool SafeNotEquals( const T t, const U u ) throw() |
| 5038 | { |
| 5039 | return !EqualityTest< T, U, ValidComparison< T, U >::method >::IsEquals( t, u ); |
| 5040 | } |
| 5041 | |
| 5042 | template < typename T, typename U > |
| 5043 | inline bool SafeGreaterThan( const T t, const U u ) throw() |
nothing calls this directly
no outgoing calls
no test coverage detected