pcbnew: fix OpenMP synch issue

Fixes: lp:1778454
* https://bugs.launchpad.net/kicad/+bug/1778454
This commit is contained in:
Seth Hillbrand 2018-06-28 09:28:02 -07:00
parent 0748c118dd
commit b0b5d91390
1 changed files with 1 additions and 1 deletions

View File

@ -379,7 +379,7 @@ void CN_CONNECTIVITY_ALGO::searchConnections()
#endif
#ifdef USE_OPENMP
#pragma omp for
#pragma omp parallel for
#endif
for( int i = 0; i < m_zoneList.Size(); i++ )
{