Add missing typename

This commit is contained in:
R. Martinho Fernandes 2017-02-27 18:32:42 +01:00
parent bbeb192ec9
commit c3da6d6e41
No known key found for this signature in database
GPG Key ID: 1392469E5B5689C4
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@
static_cast<void>(expr); \ static_cast<void>(expr); \
__catchResult.captureResult( Catch::ResultWas::DidntThrowException ); \ __catchResult.captureResult( Catch::ResultWas::DidntThrowException ); \
} \ } \
catch( Catch::add_const<Catch::add_lvalue_reference<exceptionType>::type>::type ) { \ catch( typename Catch::add_const<typename Catch::add_lvalue_reference<exceptionType>::type>::type ) { \
__catchResult.captureResult( Catch::ResultWas::Ok ); \ __catchResult.captureResult( Catch::ResultWas::Ok ); \
} \ } \
catch( ... ) { \ catch( ... ) { \