Fix compiler warning.

This commit is contained in:
Jeff Young 2018-04-17 15:06:38 +01:00
parent 000457db7c
commit e84e5606c9
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ void ZONE_FILLER::Fill( std::vector<ZONE_CONTAINER*> aZones, bool aCheck )
for( ssize_t ii = 0; ii < parallelThreadCount; ++ii )
{
fillWorkers.push_back( std::thread( [ this, aCheck, toFill ]()
fillWorkers.push_back( std::thread( [ this, toFill ]()
{
size_t i = m_next.fetch_add( 1 );
while( i < toFill.size() )