diff options
author | Brian Paul <[email protected]> | 2011-06-08 08:05:40 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-06-08 08:05:40 -0600 |
commit | 5f2deba9f3f3f9230a9fdd2848e20c1e23e98b8f (patch) | |
tree | 82bd69067d4f92bf548ccdf061ec1a6e2327c7e6 /src/gallium/auxiliary/util/u_linkage.h | |
parent | f6572017b94a137a4102342ebf6cd20dedc90271 (diff) |
gallium: s/bool/boolean/
Diffstat (limited to 'src/gallium/auxiliary/util/u_linkage.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_linkage.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_linkage.h b/src/gallium/auxiliary/util/u_linkage.h index 4720e0ee603..43ec917fc81 100644 --- a/src/gallium/auxiliary/util/u_linkage.h +++ b/src/gallium/auxiliary/util/u_linkage.h @@ -35,7 +35,7 @@ struct util_semantic_set unsigned long masks[256 / 8 / sizeof(unsigned long)]; }; -static INLINE bool +static INLINE boolean util_semantic_set_contains(struct util_semantic_set *set, unsigned char value) { return !!(set->masks[value / (sizeof(long) * 8)] & (1 << (value / (sizeof(long) * 8)))); |