Skip to content

Commit

Permalink
Removed check for missing member.
Browse files Browse the repository at this point in the history
  • Loading branch information
5cript committed Nov 23, 2024
1 parent 5bb460a commit e21953c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nui/include/nui/event_system/range_event_context.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ namespace Nui
}
friend bool operator==(RangeStateInterval const& lhs, RangeStateInterval const& rhs)
{
return lhs.low_ == rhs.low_ && lhs.high_ == rhs.high_ && lhs.type_ == rhs.type_;
return lhs.low_ == rhs.low_ && lhs.high_ == rhs.high_;
}
friend bool operator!=(RangeStateInterval const& lhs, RangeStateInterval const& rhs)
{
Expand Down

0 comments on commit e21953c

Please sign in to comment.