qualified a load of size_ts with std:: namespace (all those not from Clara)

This commit is contained in:
Phil Nash
2017-09-18 17:13:17 +01:00
parent 40209d1ae0
commit 8da0d0473b
19 changed files with 33 additions and 33 deletions

View File

@@ -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 )