Skip to content

Commit

Permalink
Merge pull request #60 from vil02/jule_trait_operator_eq_patch
Browse files Browse the repository at this point in the history
fix: `jule::Trait<Mask>::operator==`
  • Loading branch information
mertcandav authored Jan 27, 2024
2 parents 60ec0a1 + 0d912df commit fb428b5
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 fb428b5

Please sign in to comment.