Skip to content

Commit

Permalink
warnings (#2050)
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisYaroshevskiy authored Jan 17, 2025
1 parent fcfabc8 commit 71d2359
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace eve::detail
// For now didn't figure out how to generalize
template<typename P, arithmetic_scalar_value T, typename N, std::ptrdiff_t G>
EVE_FORCEINLINE auto
shuffle_l4_l5_neon_reverse(P, fixed<G> g, wide<T, N> x)
shuffle_l4_l5_neon_reverse(P, fixed<G>, wide<T, N> x)
{
if constexpr( !idxm::is_reverse(P::idxs) )
return kumi::tuple {no_matching_shuffle, eve::index<-1>};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
namespace eve::detail
{
template<callable_options O, typename T, typename N>
EVE_FORCEINLINE wide<T, N> bit_or_(EVE_REQUIRES(neon128_), O const& opts, wide<T, N> a, wide<T, N> b) noexcept
EVE_FORCEINLINE wide<T, N> bit_or_(EVE_REQUIRES(neon128_), O const&, wide<T, N> a, wide<T, N> b) noexcept
requires arm_abi<abi_t<T, N>>
{
constexpr auto c = categorize<wide<T, N>>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
namespace eve::detail
{
template<callable_options O, floating_scalar_value T, typename N, typename F>
EVE_FORCEINLINE logical<wide<T, N>> compare_absolute_(EVE_REQUIRES(neon128_), O const& opts,
EVE_FORCEINLINE logical<wide<T, N>> compare_absolute_(EVE_REQUIRES(neon128_), O const&,
wide<T, N> v, wide<T, N> w, F f) noexcept
requires (arm_abi<abi_t<T, N>>)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace eve::detail
{
template<floating_scalar_value T, typename N, callable_options O>
EVE_FORCEINLINE wide<T, N> nearest_(EVE_REQUIRES(neon128_),
O const& o,
O const&,
wide<T, N> const& v) noexcept
requires arm_abi<abi_t<T, N>>
{
Expand Down

0 comments on commit 71d2359

Please sign in to comment.