| 5912 | } |
| 5913 | |
| 5914 | void Swap( SafeInt< T, E >& with ) throw() |
| 5915 | { |
| 5916 | T temp( m_int ); |
| 5917 | m_int = with.m_int; |
| 5918 | with.m_int = temp; |
| 5919 | } |
| 5920 | |
| 5921 | static SafeInt< T, E > SafeAtoI( const char* input ) |
| 5922 | { |
nothing calls this directly
no outgoing calls
no test coverage detected