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 fe2c8b01ca834acff6962635ae1c64d5ef140e34
parent 20b370ce738238a379e892b36b13d40cdc78bd76
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date:   Tue, 12 Nov 2019 14:50:13 +0000

Remove debug code

Diffstat:
Minclude/kfr/base/univector.hpp | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/include/kfr/base/univector.hpp b/include/kfr/base/univector.hpp @@ -338,7 +338,6 @@ struct alignas(platform<>::maximum_vector_alignment) univector template <typename Input, KFR_ENABLE_IF(is_input_expression<Input>::value)> univector(Input&& input) { - printf("assign from expression\n"); this->assign_expr(std::forward<Input>(input)); } template <typename... Args>