From ce379f56afb366734e592e17701935df6aa9bb06 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Thu, 28 Jun 2018 12:22:41 -0700 Subject: [PATCH] pcbnew: Remove extraneous OpenMP shared decl --- pcbnew/connectivity_algo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/connectivity_algo.cpp b/pcbnew/connectivity_algo.cpp index 97122df731..aae0c51503 100644 --- a/pcbnew/connectivity_algo.cpp +++ b/pcbnew/connectivity_algo.cpp @@ -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 );