Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SadiinsoSnowfall committed Sep 13, 2024
1 parent f160910 commit 30e375c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/eve/module/core/regular/logical_and.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ namespace eve
template<logical_value U>
constexpr EVE_FORCEINLINE U operator()(bool a, U b) const noexcept
{
return logical_and(b, U{a});
return this->operator()(b, U{a});
}

template<logical_value T>
constexpr EVE_FORCEINLINE T operator()(T a, bool b) const noexcept
{
return logical_and(a, T{b});
return this->operator()(a, T{b});
}

constexpr EVE_FORCEINLINE bool operator()(bool a, bool b) const noexcept
Expand Down

0 comments on commit 30e375c

Please sign in to comment.