Fix for SCH_PIN operator= from Simon Richter.

This commit is contained in:
Jeff Young 2019-04-23 00:27:59 +01:00
parent b03e9061ff
commit c994961ebf
1 changed files with 2 additions and 0 deletions

View File

@ -50,6 +50,8 @@ SCH_PIN& SCH_PIN::operator=( const SCH_PIN& aPin )
m_libPin = aPin.m_libPin;
m_position = aPin.m_position;
m_isDangling = aPin.m_isDangling;
return *this;
}