Fix minor debug build error.

This commit is contained in:
Wayne Stambaugh 2013-07-26 16:25:21 -04:00
parent a82bc9d1a2
commit cb52b9d0fe
1 changed files with 5 additions and 0 deletions

View File

@ -52,6 +52,11 @@ public:
public:
PL_ITEM_LAYOUT() : EDA_ITEM( TYPE_PL_EDITOR_LAYOUT ) {}
// Required to keep compiler happy on debug builds.
#if defined(DEBUG)
virtual void Show( int nestLevel, std::ostream& os ) const {}
#endif
};
void PL_EDITOR_FRAME::SaveCopyInUndoList()