| 5053 | |
| 5054 | template < typename T, typename U > |
| 5055 | inline bool SafeLessThan( const T t, const U u ) throw() |
| 5056 | { |
| 5057 | return GreaterThanTest< U, T, ValidComparison< U, T >::method >::GreaterThan( u, t ); |
| 5058 | } |
| 5059 | |
| 5060 | template < typename T, typename U > |
| 5061 | inline bool SafeLessThanEquals( const T t, const U u ) throw() |
nothing calls this directly
no outgoing calls
no test coverage detected