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 722795a6d21aa85bc7150c11c82c1bdb3140935d
parent d2903072f93a2a245ea69e1a052a22c731148ad9
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date:   Thu,  6 Oct 2016 02:53:04 +0300

CMT_UNUSED for __attribute__((unused))

Diffstat:
Minclude/kfr/cident.h | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/include/kfr/cident.h b/include/kfr/cident.h @@ -427,6 +427,8 @@ extern char* gets(char* __s); #if defined(CMT_GNU_ATTRIBUTES) #define CMT_FAST_CC __attribute__((fastcall)) +#define CMT_UNUSED __attribute__((unused)) #else #define CMT_FAST_CC __fastcall +#define CMT_UNUSED #endif