From dd2e12bdf1d27e4a9f73ecbd9d784480accea52d Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sat, 4 Jun 2022 22:22:55 +0100 Subject: [PATCH] Formatting. --- common/lib_tree_model.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lib_tree_model.cpp b/common/lib_tree_model.cpp index 6819c8306c..4770e12b44 100644 --- a/common/lib_tree_model.cpp +++ b/common/lib_tree_model.cpp @@ -296,7 +296,7 @@ void LIB_TREE_NODE_LIB::UpdateScore( EDA_COMBINED_MATCHER& aMatcher, const wxStr if( m_Children.size() ) { - for( std::unique_ptr& child: m_Children ) + for( std::unique_ptr& child: m_Children ) { child->UpdateScore( aMatcher, aLib ); m_Score = std::max( m_Score, child->m_Score );