kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
Log | Files | Refs | README

commit fce2412bf8a29afba34b7093c187cb1731d3a684
parent 977138801d80d23713692e13bbc1572c484574df
Author: [email protected] <[email protected]>
Date:   Mon, 25 Nov 2019 06:59:31 +0000

cometa invoke_result

Diffstat:
Minclude/kfr/dft/dft_c.h | 2++
Mtests/expression_test.cpp | 2+-
2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/include/kfr/dft/dft_c.h b/include/kfr/dft/dft_c.h @@ -41,6 +41,8 @@ #define KFR_CDECL __cdecl #elif defined KFR_ARCH_IS_X86 #define KFR_CDECL __attribute__((__cdecl__)) +#else +#define KFR_CDECL #endif #endif diff --git a/tests/expression_test.cpp b/tests/expression_test.cpp @@ -18,7 +18,7 @@ namespace CMT_ARCH_NAME TEST(pack) { - static_assert(is_same<vec<f32x2, 1>, std::invoke_result_t<fn::reverse, vec<f32x2, 1>>>); + static_assert(is_same<vec<f32x2, 1>, invoke_result<fn::reverse, vec<f32x2, 1>>>); const univector<float, 21> v1 = 1 + counter(); const univector<float, 21> v2 = v1 * 11;