From 66a488586e2a5b570691eaae4a9d4e47f4f92cc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 4 Jun 2017 18:30:49 +0200 Subject: [PATCH] Temporarily readd the UNSTABLE configuration --- lib/check.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/check.h b/lib/check.h index f32050227..8ab12488b 100644 --- a/lib/check.h +++ b/lib/check.h @@ -37,7 +37,7 @@ * * Use CHECK_WRONG_DATA in checkers when you check for wrong data. */ -#ifdef DACA2 +#if defined(DACA2) || defined(UNSTABLE) #define CHECK_WRONG_DATA(COND, TOK) ({ if(!(COND)) reportError(nullptr,Severity::error,"DacaWrongData","Wrong data detected, " #COND); (COND);}) #else #define CHECK_WRONG_DATA(COND, TOK) (COND)