Fix minor debug build error.
This commit is contained in:
parent
a82bc9d1a2
commit
cb52b9d0fe
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue