Skip to content

Commit

Permalink
fixed compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SJulianS committed Jun 4, 2024
1 parent cbc4ff0 commit bf39d60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/hal_core/netlist/pins/pin_group.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ namespace hal
bool operator==(const PinGroup<T>& other) const
{
if (m_id != other.get_id() || m_name != other.get_name() || m_direction != other.get_direction() || m_type != other.get_type() || m_start_index != other.get_start_index()
|| m_ascending != other.is_ascending() || m_is_ordered != other.is_ordered())
|| m_ascending != other.is_ascending() || m_ordered != other.is_ordered())
{
return false;
}
Expand Down Expand Up @@ -305,7 +305,7 @@ namespace hal
*
* @param[in] ordered - Set `true` if the pin group is inherently ordered, `false` otherwise. Defaults to `true`.
*/
void set_ordered(bool ordered = true) const
void set_ordered(bool ordered = true)
{
m_ordered = ordered;
}
Expand Down

0 comments on commit bf39d60

Please sign in to comment.