| 5083 | |
| 5084 | template < typename T, typename U > |
| 5085 | inline bool SafeAdd( T t, U u, T& result ) throw() |
| 5086 | { |
| 5087 | return AdditionHelper< T, U, AdditionMethod< T, U >::method >::Addition( t, u, result ); |
| 5088 | } |
| 5089 | |
| 5090 | template < typename T, typename U > |
| 5091 | inline bool SafeSubtract( T t, U u, T& result ) throw() |
nothing calls this directly
no outgoing calls
no test coverage detected