| 7210 | namespace Catch { |
| 7211 | ErrnoGuard::ErrnoGuard():m_oldErrno(errno){} |
| 7212 | ErrnoGuard::~ErrnoGuard() { errno = m_oldErrno; } |
| 7213 | } |
| 7214 | // end catch_errno_guard.cpp |
| 7215 | // start catch_exception_translator_registry.cpp |
nothing calls this directly
no outgoing calls
no test coverage detected