mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
fix MSVC compiler warnings
this fix fixes this MSVC compiler warning: warning C4800: 'int' : forcing value to bool 'true' or 'false' (performance warning)
This commit is contained in:
parent
51c69dbc33
commit
51da1ec366
@ -54,9 +54,9 @@ namespace Catch {
|
||||
return static_cast<ResultDisposition::Flags>( static_cast<int>( lhs ) | static_cast<int>( rhs ) );
|
||||
}
|
||||
|
||||
inline bool shouldContinueOnFailure( int flags ) { return flags & ResultDisposition::ContinueOnFailure; }
|
||||
inline bool shouldNegate( int flags ) { return flags & ResultDisposition::NegateResult; }
|
||||
inline bool shouldSuppressFailure( int flags ) { return flags & ResultDisposition::SuppressFail; }
|
||||
inline bool shouldContinueOnFailure( int flags ) { return ((flags & ResultDisposition::ContinueOnFailure) != 0); }
|
||||
inline bool shouldNegate( int flags ) { return ((flags & ResultDisposition::NegateResult) != 0); }
|
||||
inline bool shouldSuppressFailure( int flags ) { return ((flags & ResultDisposition::SuppressFail) != 0); }
|
||||
|
||||
} // end namespace Catch
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user