Skip to content

Commit

Permalink
fix: jule::Trait<Mask>::operator==
Browse files Browse the repository at this point in the history
  • Loading branch information
vil02 committed Jan 27, 2024
1 parent 60ec0a1 commit 0d912df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/trait.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ namespace jule

constexpr jule::Bool operator==(const jule::Trait<Mask> &src) const noexcept
{
return this->data.alloc == this->data.alloc;
return this->data.alloc == src.data.alloc;
}

constexpr jule::Bool operator!=(const jule::Trait<Mask> &src) const noexcept
Expand Down

0 comments on commit 0d912df

Please sign in to comment.