pcbnew: Remove extraneous OpenMP shared decl

This commit is contained in:
Seth Hillbrand 2018-06-28 12:22:41 -07:00
parent b0b5d91390
commit ce379f56af
1 changed files with 1 additions and 1 deletions

View File

@ -348,7 +348,7 @@ void CN_CONNECTIVITY_ALGO::searchConnections()
}
#ifdef USE_OPENMP
#pragma omp parallel shared( m_itemList ) num_threads( std::max( omp_get_num_procs(), 2 ) )
#pragma omp parallel num_threads( std::max( omp_get_num_procs(), 2 ) )
{
if( omp_get_thread_num() == 0 && m_progressReporter )
m_progressReporter->KeepRefreshing( true );