mirror of
https://github.com/catchorg/Catch2.git
synced 2025-11-09 16:29:32 +01:00
qualified a load of size_ts with std:: namespace (all those not from Clara)
This commit is contained in:
@@ -95,7 +95,7 @@ namespace {
|
||||
tp.m_currentColumn++;
|
||||
|
||||
auto colInfo = tp.m_columnInfos[tp.m_currentColumn];
|
||||
auto padding = ( strSize+2 < static_cast<size_t>( colInfo.width ) )
|
||||
auto padding = ( strSize+2 < static_cast<std::size_t>( colInfo.width ) )
|
||||
? std::string( colInfo.width-(strSize+2), ' ' )
|
||||
: std::string();
|
||||
if( colInfo.justification == ColumnInfo::Left )
|
||||
|
||||
Reference in New Issue
Block a user