CppTools icon indicating copy to clipboard operation
CppTools copied to clipboard

support _Bool from C99

Open kevinbarabash opened this issue 9 years ago • 0 comments

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.

kevinbarabash avatar May 23 '15 18:05 kevinbarabash