| 6357 | } |
| 6358 | |
| 6359 | SafeInt< T, E > Max( SafeInt< T, E > test, const T upper = std::numeric_limits<T>::max() ) const SAFEINT_NOTHROW |
| 6360 | { |
| 6361 | T tmp = test > m_int ? (T)test : m_int; |
| 6362 | return tmp > upper ? upper : tmp; |
| 6363 | } |
| 6364 | |
| 6365 | void Swap( SafeInt< T, E >& with ) SAFEINT_NOTHROW |
| 6366 | { |
nothing calls this directly
no outgoing calls
no test coverage detected