Fixed noexcept destructors issue

This commit is contained in:
Phil Nash 2015-11-03 17:37:43 +00:00
parent 9e42153fe5
commit ece529ae7c
3 changed files with 13 additions and 1 deletions

View file

@ -49,6 +49,9 @@ namespace Catch {
NonCopyable::~NonCopyable() {}
IShared::~IShared() {}
IStream::~IStream() CATCH_NOEXCEPT {}
FileStream::~FileStream() CATCH_NOEXCEPT {}
CoutStream::~CoutStream() CATCH_NOEXCEPT {}
DebugOutStream::~DebugOutStream() CATCH_NOEXCEPT {}
StreamBufBase::~StreamBufBase() CATCH_NOEXCEPT {}
IContext::~IContext() {}
IResultCapture::~IResultCapture() {}