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 6364aaecf3e7dc3bc3f76fbe4f87bbde5224cd58
parent 8a3ee958ef5b428eafc71bd968478bd7e536f6e9
Author: [email protected] <[email protected]>
Date:   Mon, 19 Aug 2019 13:23:32 +0000

explicit copy assignment operator for Xcode

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

diff --git a/include/kfr/base/univector.hpp b/include/kfr/base/univector.hpp @@ -464,6 +464,8 @@ struct univector<T, tag_dynamic_vector> { return index < this->size() ? this->operator[](index) : fallback_value; } + using univector_base<T, univector, is_vec_element<T>::value>::operator=; + univector& operator=(const univector&) = default; template <typename Input, KFR_ENABLE_IF(is_input_expression<Input>::value)> KFR_MEM_INTRINSIC univector& operator=(Input&& input) {