MCPcopy Create free account
hub / github.com/dcleblanc/SafeInt / Swap

Function Swap

SafeInt.hpp:6365–6370  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected