mirror of
https://github.com/catchorg/Catch2.git
synced 2025-11-25 22:49:34 +01:00
Fixed some signed/ unsigned warnings
This commit is contained in:
@@ -230,7 +230,7 @@ namespace Catch {
|
||||
private:
|
||||
|
||||
bool aborting() const {
|
||||
return m_totals.assertions.failed == m_config.getCutoff();
|
||||
return m_totals.assertions.failed == static_cast<std::size_t>( m_config.getCutoff() );
|
||||
}
|
||||
|
||||
ResultAction::Value actOnCurrentResult() {
|
||||
|
||||
Reference in New Issue
Block a user