| 6363 | } |
| 6364 | |
| 6365 | void Swap( SafeInt< T, E >& with ) SAFEINT_NOTHROW |
| 6366 | { |
| 6367 | T temp( m_int ); |
| 6368 | m_int = with.m_int; |
| 6369 | with.m_int = temp; |
| 6370 | } |
| 6371 | |
| 6372 | static SafeInt< T, E > SafeAtoI( const char* input ) SAFEINT_CPP_THROW |
| 6373 | { |
nothing calls this directly
no outgoing calls
no test coverage detected