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 a90076d26d8393790085adfd4a88650dd8b7e018
parent e7ec3b5643cc8d7a8c6a0ef26bb1c8ef58e39b36
Author: [email protected] <[email protected]>
Date:   Mon, 17 Oct 2016 06:40:37 +0300

Add noexcept for mpfr::number constructor

Diffstat:
Mtests/mpfr/mpfrplus.hpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/mpfr/mpfrplus.hpp b/tests/mpfr/mpfrplus.hpp @@ -187,7 +187,7 @@ private: bool owns; public: - inline number() : owns(true) { mpfr_init2(val, internal::precision()); } + inline number() noexcept : owns(true) { mpfr_init2(val, internal::precision()); } inline ~number() { if (owns)