Skip to content

Commit

Permalink
Silence unused parameter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
kcat committed Feb 7, 2024
1 parent 317817b commit 05c94a6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion common/pffft.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,9 @@ force_inline void vcplxmulconj(v4sf &ar, v4sf &ai, v4sf br, v4sf bi) noexcept

#if !defined(PFFFT_SIMD_DISABLE)

inline void assertv4(const al::span<float,4> v_f, float f0, float f1, float f2, float f3)
inline void assertv4(const al::span<float,4> v_f [[maybe_unused]], const float f0 [[maybe_unused]],
const float f1 [[maybe_unused]], const float f2 [[maybe_unused]],
const float f3 [[maybe_unused]])
{ assert(v_f[0] == f0 && v_f[1] == f1 && v_f[2] == f2 && v_f[3] == f3); }

template<typename T, T ...N>
Expand Down

0 comments on commit 05c94a6

Please sign in to comment.