mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-25 14:09:26 +00:00
Fixed some signed/ unsigned warnings
This commit is contained in:
parent
e9e68591a2
commit
6d1c11381e
5 changed files with 12 additions and 12 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue