From 43300ac55f1da50d1b775599096720ebe2609910 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sun, 8 May 2005 18:17:08 +0000 Subject: [PATCH] bool conflicts with boolean in C++ when compiled... --- src/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.h b/src/config.h index d816eb918..fe933c679 100644 --- a/src/config.h +++ b/src/config.h @@ -227,7 +227,7 @@ extern char * strdup(const char *s); ** The Eressea boolean type ** **** ****/ #ifdef __cplusplus - typedef bool boolean; + typedef int boolean; /* not bool! wrong size. */ #else typedef int boolean; # define false ((boolean)0)