From 1671c3356d4f5af9bfcda477b0da4d3b242291df Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Fri, 7 Aug 2020 21:59:41 +0100 Subject: [PATCH] Fix typo where "continue" got put on wrong side of closing brace. Fixes https://gitlab.com/kicad/code/kicad/issues/5100 --- pcbnew/drc/drc.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pcbnew/drc/drc.cpp b/pcbnew/drc/drc.cpp index 37847dc39b..df81572a53 100644 --- a/pcbnew/drc/drc.cpp +++ b/pcbnew/drc/drc.cpp @@ -1205,8 +1205,9 @@ bool DRC::doPadToPadsDrc( BOARD_COMMIT& aCommit, D_PAD* aRefPad, D_PAD** aStart, MARKER_PCB* marker = new MARKER_PCB( drcItem, aRefPad->GetPosition() ); addMarkerToPcb( aCommit, marker ); - continue; } + + continue; } // if either pad has no drill and is only on technical layers, not a clearance violation