diff --git a/include/internal/catch_common.h b/include/internal/catch_common.h index d4f1dbbb..630a65c9 100644 --- a/include/internal/catch_common.h +++ b/include/internal/catch_common.h @@ -121,9 +121,9 @@ namespace Catch { #define CATCH_INTERNAL_LINEINFO \ ::Catch::SourceLineInfo( __FILE__, static_cast( __LINE__ ) ) #define CATCH_INTERNAL_ERROR( msg ) \ - throw std::logic_error( static_cast( std::ostringstream() << CATCH_INTERNAL_LINEINFO << ": Internal Catch error: " << msg ).str() ) + throw std::logic_error( static_cast( std::ostringstream() << CATCH_INTERNAL_LINEINFO << ": Internal Catch error: " << msg ).str() ) #define CATCH_ERROR( msg ) \ - throw std::domain_error( static_cast( std::ostringstream() << msg ).str() ) + throw std::domain_error( static_cast( std::ostringstream() << msg ).str() ) #define CATCH_ENFORCE( condition, msg ) \ do{ if( !(condition) ) CATCH_ERROR( msg ); } while(false)