Fix broken definition of is_linked().

(cherry picked from commit fff2598709)
This commit is contained in:
Stephen Williams 2009-03-06 10:19:46 -08:00
parent c96e4da9e4
commit 19b68f6332
1 changed files with 1 additions and 1 deletions

View File

@ -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