From c58b3fe8a4d95b030e0d9d38b22ba59b5de550c1 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Sat, 14 Nov 2020 08:51:21 +0100 Subject: [PATCH] Fix a compil issue. --- pcbnew/pcb_shape.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pcbnew/pcb_shape.h b/pcbnew/pcb_shape.h index b1769ccc42..06cf45aa9d 100644 --- a/pcbnew/pcb_shape.h +++ b/pcbnew/pcb_shape.h @@ -108,6 +108,8 @@ public: case S_LAST: return false; } + + return false; // Make compil happy } void SetWidth( int aWidth ) { m_width = aWidth; }