mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-13 01:19:54 +01:00
Extend exception type in _THROWS_ with const& unconditionally
Potentially breaking change, but most people apparently were using it wrong and thus it won't be breaking for them. Closes #955
This commit is contained in:
parent
4a1e898eae
commit
efd79aa0bd
@ -130,7 +130,7 @@
|
||||
static_cast<void>(expr); \
|
||||
__catchResult.captureResult( Catch::ResultWas::DidntThrowException ); \
|
||||
} \
|
||||
catch( exceptionType ) { \
|
||||
catch( exceptionType const& ) { \
|
||||
__catchResult.captureResult( Catch::ResultWas::Ok ); \
|
||||
} \
|
||||
catch( ... ) { \
|
||||
@ -194,7 +194,7 @@
|
||||
static_cast<void>(expr); \
|
||||
__catchResult.captureResult( Catch::ResultWas::DidntThrowException ); \
|
||||
} \
|
||||
catch( exceptionType ex ) { \
|
||||
catch( exceptionType const& ex ) { \
|
||||
__catchResult.captureMatch( ex, matcher, #matcher ); \
|
||||
} \
|
||||
catch( ... ) { \
|
||||
|
Loading…
Reference in New Issue
Block a user