From 167e430fd918c9cf5f97ee3dab34ff84835f91d7 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Mon, 16 Jan 2023 20:04:03 +0100 Subject: [PATCH] Fix a compil issue in mocks.cpp. --- qa/qa_utils/mocks.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/qa/qa_utils/mocks.cpp b/qa/qa_utils/mocks.cpp index d8a6f343fb..75b8773799 100644 --- a/qa/qa_utils/mocks.cpp +++ b/qa/qa_utils/mocks.cpp @@ -21,7 +21,6 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ -#include #include #include #include @@ -38,6 +37,7 @@ #include #include #include +#include FP_LIB_TABLE GFootprintTable; @@ -397,8 +397,6 @@ void PCB_SELECTION_TOOL::GuessSelectionCandidates( GENERAL_COLLECTOR& aCollector } - - int PCB_SELECTION_TOOL::updateSelection( const TOOL_EVENT& aEvent ) { return 0; @@ -460,6 +458,11 @@ bool PCB_TOOL_BASE::Is45Limited() const } +ZONE_FILLER::~ZONE_FILLER() +{ +} + + ZONE_FILLER_TOOL::ZONE_FILLER_TOOL() : PCB_TOOL_BASE( "pcbnew.ZoneFiller" ), m_fillInProgress( false )