mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 21:00:01 -05:00
Replace 'foo.size() != 0' pattern with !foo.empty().
This commit is contained in:
@@ -92,7 +92,7 @@ void cmCTestMultiProcessHandler::RunTests()
|
||||
}
|
||||
this->TestHandler->SetMaxIndex(this->FindMaxIndex());
|
||||
this->StartNextTests();
|
||||
while(this->Tests.size() != 0)
|
||||
while(!this->Tests.empty())
|
||||
{
|
||||
if(this->StopTimePassed)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user