diff --git a/include/kyosu/functions/minus.hpp b/include/kyosu/functions/minus.hpp index b596b1f4..bc728732 100644 --- a/include/kyosu/functions/minus.hpp +++ b/include/kyosu/functions/minus.hpp @@ -17,8 +17,9 @@ namespace kyosu::tags KYOSU_DEFERS_CALLABLE(minus_); - template + template static KYOSU_FORCEINLINE auto deferred_call(auto, T const& v) noexcept { return -v; } + // there is no other implementation template KYOSU_FORCEINLINE auto operator()(T const& target) const noexcept -> decltype(eve::tag_invoke(*this, target))