Use 0 and 1, not false and true, in tree.h changes.
Reported by: jenkins
This commit is contained in:
parent
b16f993ec2
commit
86d00db451
@ -365,9 +365,9 @@ struct { \
|
||||
*/
|
||||
#ifndef RB_AUGMENT_CHECK
|
||||
#ifndef RB_AUGMENT
|
||||
#define RB_AUGMENT_CHECK(x) false
|
||||
#define RB_AUGMENT_CHECK(x) 0
|
||||
#else
|
||||
#define RB_AUGMENT_CHECK(x) (RB_AUGMENT(x), true)
|
||||
#define RB_AUGMENT_CHECK(x) (RB_AUGMENT(x), 1)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
@ -475,7 +475,7 @@ struct { \
|
||||
#ifndef RB_AUGMENT
|
||||
#define _RB_AUGMENT_VERIFY(x) RB_AUGMENT_CHECK(x)
|
||||
#else
|
||||
#define _RB_AUGMENT_VERIFY(x) false
|
||||
#define _RB_AUGMENT_VERIFY(x) 0
|
||||
#endif
|
||||
#define RB_GENERATE_RANK(name, type, field, attr) \
|
||||
/* \
|
||||
|
Loading…
Reference in New Issue
Block a user