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 21c8909929a62b8f39e81d2e6c49f7305ddc035c
parent 0b462f885e7eb4b13a3991b0661572a49e6db1de
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date:   Sat, 30 Jul 2016 17:08:58 +0300

Remove diagnostic ignored -Winaccessible-base

Diffstat:
Minclude/kfr/base/complex.hpp | 7-------
Minclude/kfr/dft/ft.hpp | 5-----
Minclude/kfr/dsp/biquad.hpp | 7-------
3 files changed, 0 insertions(+), 19 deletions(-)

diff --git a/include/kfr/base/complex.hpp b/include/kfr/base/complex.hpp @@ -33,11 +33,6 @@ #include "sin_cos.hpp" #include "sqrt.hpp" -#pragma clang diagnostic push -#if CID_HAS_WARNING("-Winaccessible-base") -#pragma clang diagnostic ignored "-Winaccessible-base" -#endif - #ifdef KFR_STD_COMPLEX #include <complex> #endif @@ -588,5 +583,3 @@ KFR_INTRIN expr_func<fn::csqrt, E1> csqrt(E1&& x) return { {}, std::forward<E1>(x) }; } } - -#pragma clang diagnostic pop diff --git a/include/kfr/dft/ft.hpp b/include/kfr/dft/ft.hpp @@ -34,9 +34,6 @@ #include "../base/memory.hpp" #include "../data/sincos.hpp" -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Winaccessible-base" - namespace kfr { @@ -1501,5 +1498,3 @@ KFR_INTRIN void cdigitreverse4_write<false, f64, 32>(complex<f64>* dest, vec<f64 #endif } } - -#pragma clang diagnostic pop diff --git a/include/kfr/dsp/biquad.hpp b/include/kfr/dsp/biquad.hpp @@ -26,11 +26,6 @@ #include "../base/operators.hpp" #include "../base/vec.hpp" -#pragma clang diagnostic push -#if CID_HAS_WARNING("-Winaccessible-base") -#pragma clang diagnostic ignored "-Winaccessible-base" -#endif - namespace kfr { @@ -175,5 +170,3 @@ KFR_INLINE internal::in_biquad<>::expression_biquads<filters, T, internal::arg<E return internal::in_biquad<>::expression_biquads<filters, T, internal::arg<E1>>(bq, std::forward<E1>(e1)); } } - -#pragma clang diagnostic pop