This commit is contained in:
Seth Hillbrand 2024-06-03 10:41:34 -07:00
parent 4dffa6f9e8
commit 549ea93be2
1 changed files with 1 additions and 1 deletions

View File

@ -2744,7 +2744,7 @@ bool SCH_SYMBOL::operator==( const SCH_ITEM& aOther ) const
for( unsigned i = 0; i < m_pins.size(); ++i )
{
if( *m_pins[i] == *symbol.m_pins[i] )
if( *m_pins[i] != *symbol.m_pins[i] )
return false;
}