| 5077 | |
| 5078 | template < typename T, typename U > |
| 5079 | inline bool SafeDivide( T t, U u, T& result ) throw() |
| 5080 | { |
| 5081 | return ( DivisionHelper< T, U, DivisionMethod< T, U >::method >::Divide( t, u, result ) == SafeIntNoError ); |
| 5082 | } |
| 5083 | |
| 5084 | template < typename T, typename U > |
| 5085 | inline bool SafeAdd( T t, U u, T& result ) throw() |
nothing calls this directly
no outgoing calls
no test coverage detected