From 01faca27997aca9bc279c19bd0d383197462fc0a Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Mon, 12 Feb 2018 13:36:03 -0500 Subject: [PATCH] Fix release build error caused by previous commit. --- eeschema/sch_collectors.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/eeschema/sch_collectors.cpp b/eeschema/sch_collectors.cpp index a493f0d31c..45ccb8a46e 100644 --- a/eeschema/sch_collectors.cpp +++ b/eeschema/sch_collectors.cpp @@ -351,7 +351,11 @@ public: wxPoint GetPosition() const override { return wxPoint(); } void SetPosition( const wxPoint& ) override {} void Draw( EDA_DRAW_PANEL* , wxDC* , const wxPoint& , GR_DRAWMODE , COLOR4D ) override {} + +#if defined(DEBUG) void Show( int , std::ostream& ) const override {} +#endif + void Move( const wxPoint& ) override {} void MirrorY( int ) override {} void MirrorX( int ) override {}