We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 024aec9 commit 9d5cdc8Copy full SHA for 9d5cdc8
1 file changed
src/catch2/reporters/catch_reporter_helpers.cpp
@@ -205,7 +205,8 @@ namespace Catch {
205
206
for ( auto const& tagCount : tags ) {
207
ReusableStringStream rss;
208
- rss << " " << std::setw( maxTagCountLen ) << tagCount.count << " ";
+ rss << " " << std::setw( static_cast<size_t>( maxTagCountLen ) )
209
+ << tagCount.count << " ";
210
auto str = rss.str();
211
auto wrapper = TextFlow::Column( tagCount.all() )
212
.initialIndent( 0 )
0 commit comments