Skip to content

Commit

Permalink
fix unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
SadiinsoSnowfall committed Feb 7, 2025
1 parent f41846c commit 95b6af7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/eve/module/core/constant/as_value.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ namespace eve
}

template<arithmetic_value From, value T>
EVE_FORCEINLINE constexpr T operator()(From from, as<T> t) const noexcept
EVE_FORCEINLINE constexpr T operator()(From from, as<T>) const noexcept
{
return T{from};
}

template<relaxed_logical_value From, value T>
EVE_FORCEINLINE constexpr T operator()(From from, as<T> t) const noexcept
EVE_FORCEINLINE constexpr T operator()(From from, as<T>) const noexcept
{
return T{from};
}
Expand Down

0 comments on commit 95b6af7

Please sign in to comment.