Fix sign comparison warning
This commit is contained in:
parent
5bbb4489b3
commit
218f66a08b
|
@ -121,7 +121,7 @@ void ZONE_FILLER::Fill( std::vector<ZONE_CONTAINER*> aZones )
|
||||||
m_count_done = 0;
|
m_count_done = 0;
|
||||||
std::vector<std::thread> fillWorkers;
|
std::vector<std::thread> fillWorkers;
|
||||||
|
|
||||||
for( size_t ii = 0; ii < parallelThreadCount; ++ii )
|
for( ssize_t ii = 0; ii < parallelThreadCount; ++ii )
|
||||||
{
|
{
|
||||||
fillWorkers.push_back( std::thread( [ this, toFill ]()
|
fillWorkers.push_back( std::thread( [ this, toFill ]()
|
||||||
{
|
{
|
||||||
|
@ -191,7 +191,7 @@ void ZONE_FILLER::Fill( std::vector<ZONE_CONTAINER*> aZones )
|
||||||
m_count_done = 0;
|
m_count_done = 0;
|
||||||
std::vector<std::thread> triangulationWorkers;
|
std::vector<std::thread> triangulationWorkers;
|
||||||
|
|
||||||
for( size_t ii = 0; ii < parallelThreadCount; ++ii )
|
for( ssize_t ii = 0; ii < parallelThreadCount; ++ii )
|
||||||
{
|
{
|
||||||
triangulationWorkers.push_back( std::thread( [ this, toFill ]()
|
triangulationWorkers.push_back( std::thread( [ this, toFill ]()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue