Pcbnew: fix override release build error.
NETINFO_ITEM::Show() method was not wrapped in #ifdef DEBUG/#endif causing an error in release builds.
This commit is contained in:
parent
59c81976dc
commit
8b59350e44
|
@ -174,9 +174,11 @@ public:
|
||||||
return wxT( "NETINFO_ITEM" );
|
return wxT( "NETINFO_ITEM" );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(DEBUG)
|
||||||
void Show( int nestLevel, std::ostream& os ) const override
|
void Show( int nestLevel, std::ostream& os ) const override
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
const wxPoint& GetPosition() const override
|
const wxPoint& GetPosition() const override
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue