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 c72487c8d009292d26d54db30f772285a8601351
parent 606900af580d60d00c3fd507a6f9dc6225a39edb
Author: [email protected] <[email protected]>
Date:   Tue, 26 Jul 2016 19:17:24 +0300

Fix TESTO_CHECK

Diffstat:
Mtests/testo/testo.hpp | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tests/testo/testo.hpp b/tests/testo/testo.hpp @@ -537,9 +537,10 @@ void assert_is_same_decay() } #define TESTO_CHECK(...) \ + do \ { \ ::testo::active_test()->check(::testo::make_comparison() <= __VA_ARGS__, #__VA_ARGS__); \ - } + } while (0) #define TESTO_TEST(name) \ void test_function_##name(); \