From ba17d4dcb33a0d4473aebbc9ba141385226dbe58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20H=C3=BCdepohl?= Date: Thu, 7 Dec 2017 12:16:13 +0100 Subject: [PATCH] These checks were there for a reason Apparently it was not fool-proof enough, if they could be disabled that easily :) --- test/C/test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/C/test.c b/test/C/test.c index 14e7dcf0..6bad0622 100644 --- a/test/C/test.c +++ b/test/C/test.c @@ -55,15 +55,15 @@ #include "test/shared/generated.h" #if !(defined(TEST_REAL) ^ defined(TEST_COMPLEX)) -//#error "define exactly one of TEST_REAL or TEST_COMPLEX" +#error "define exactly one of TEST_REAL or TEST_COMPLEX" #endif #if !(defined(TEST_SINGLE) ^ defined(TEST_DOUBLE)) -//#error "define exactly one of TEST_SINGLE or TEST_DOUBLE" +#error "define exactly one of TEST_SINGLE or TEST_DOUBLE" #endif #if !(defined(TEST_SOLVER_1STAGE) ^ defined(TEST_SOLVER_2STAGE)) -//#error "define exactly one of TEST_SOLVER_1STAGE or TEST_SOLVER_2STAGE" +#error "define exactly one of TEST_SOLVER_1STAGE or TEST_SOLVER_2STAGE" #endif #ifdef TEST_SINGLE -- GitLab