Fix broken definition of is_linked().
This commit is contained in:
parent
5bc41e1a17
commit
fff2598709
|
|
@ -173,7 +173,7 @@ void Link::unlink()
|
|||
|
||||
bool Link::is_equal(const Link&that) const
|
||||
{
|
||||
return (node_ == that.node_) && (pin_ == that.pin_);
|
||||
return (get_obj() == that.get_obj()) && (get_pin() == that.get_pin());
|
||||
}
|
||||
|
||||
bool Link::is_linked() const
|
||||
|
|
|
|||
Loading…
Reference in New Issue