forked from OSchip/llvm-project
Correct the definition of ObjC's BOOL in our pre-canned set of defines. It's supposed to
be "signed char" not "int". <rdar://problem/13131126> llvm-svn: 174209
This commit is contained in:
parent
8114a7a651
commit
95a777e915
|
@ -24,7 +24,7 @@ static const char *global_defines =
|
|||
"#define nil ((id)0) \n"
|
||||
"#define YES ((BOOL)1) \n"
|
||||
"#define NO ((BOOL)0) \n"
|
||||
"typedef int BOOL; \n"
|
||||
"typedef signed char BOOL; \n"
|
||||
"typedef signed __INT8_TYPE__ int8_t;\n"
|
||||
"typedef unsigned __INT8_TYPE__ uint8_t;\n"
|
||||
"typedef signed __INT16_TYPE__ int16_t;\n"
|
||||
|
|
Loading…
Reference in New Issue