From 9e8cfd58a93b24ef20ad4ed00bbffef6f04465cc Mon Sep 17 00:00:00 2001 From: jl777 Date: Tue, 24 Oct 2017 13:24:02 +0300 Subject: [PATCH] Undefine cJSON bools --- src/cJSON.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cJSON.c b/src/cJSON.c index 5b58f2ffc..b67ca698d 100644 --- a/src/cJSON.c +++ b/src/cJSON.c @@ -43,8 +43,8 @@ #include "cJSON.h" /* define our own boolean type */ -#define true ((cJSON_bool)1) -#define false ((cJSON_bool)0) +//#define true ((cJSON_bool)1) +//#define false ((cJSON_bool)0) typedef struct { const unsigned char *json;