Skip to content

Commit

Permalink
fix an ambiguous overload
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan-rsm-McKenzie committed Jul 10, 2023
1 parent a453401 commit 7443a68
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CommonLibF4/include/RE/Bethesda/BSTList.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,12 @@ namespace RE
return _cur == a_rhs._cur;
}

template <class V>
[[nodiscard]] bool operator!=(const iterator_base<V>& a_rhs) noexcept
{
return !(*this == a_rhs);
}

protected:
template <class>
friend class BSSimpleList;
Expand Down

0 comments on commit 7443a68

Please sign in to comment.