mirror of
https://github.com/catchorg/Catch2.git
synced 2025-09-17 10:25:39 +02: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