| 5065 | |
| 5066 | template < typename T, typename U > |
| 5067 | inline bool SafeModulus( const T& t, const U& u, T& result ) throw() |
| 5068 | { |
| 5069 | return ( ModulusHelper< T, U, ValidComparison< T, U >::method >::Modulus( t, u, result ) == SafeIntNoError ); |
| 5070 | } |
| 5071 | |
| 5072 | template < typename T, typename U > |
| 5073 | inline bool SafeMultiply( T t, U u, T& result ) throw() |
nothing calls this directly
no outgoing calls
no test coverage detected