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 c8f252d1e98fffc3845195cfa7ea672e04cfe3b6
parent 2c68264ccb66c1afe603f4b20102b7689b08485d
Author: [email protected] <[email protected]>
Date:   Mon, 26 Sep 2016 09:48:31 +0300

static_assert for checking size of random_state

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

diff --git a/include/kfr/base/random.hpp b/include/kfr/base/random.hpp @@ -69,6 +69,8 @@ protected: random_state state; }; +static_assert(sizeof(random_state) == 16, "sizeof(random_state) == 16"); + template <size_t N, KFR_ENABLE_IF(N <= sizeof(random_state))> inline vec<u8, N> random_bits(random_bit_generator& gen) {