CppTools
CppTools copied to clipboard
support _Bool from C99
I've included <stdbool.h>
but the following code produces an error for _Bool
.
_Bool a = true;
<stdbool.h>
makes the following defines:
#define bool _Bool
#define true 1
#define false 0
bool b = false;
should also work without error.