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 c0d4c59613fcf19dbd2c132677526b09b9e01828
parent a8589365187691db1abdbe8d42f2b39705f99903
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date:   Tue,  2 Aug 2022 20:23:46 +0100

Fix includes

Diffstat:
Minclude/kfr/base/impl/static_array.hpp | 1+
Minclude/kfr/base/shape.hpp | 1+
2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/include/kfr/base/impl/static_array.hpp b/include/kfr/base/impl/static_array.hpp @@ -1,5 +1,6 @@ #include "../../cometa.hpp" #include "../../kfr.h" +#include "../../simd/read_write.hpp" namespace kfr { diff --git a/include/kfr/base/shape.hpp b/include/kfr/base/shape.hpp @@ -3,6 +3,7 @@ #include "../simd/shuffle.hpp" #include "../simd/types.hpp" #include "../simd/vec.hpp" +#include "../math/min_max.hpp" #include <bitset>