]> granicus.if.org Git - postgresql/commit
Use an unsigned char for bool if we don't use the native bool.
authorAndrew Gierth <rhodiumtoad@postgresql.org>
Wed, 20 Feb 2019 21:31:02 +0000 (21:31 +0000)
committerAndrew Gierth <rhodiumtoad@postgresql.org>
Wed, 20 Feb 2019 21:31:02 +0000 (21:31 +0000)
commitd26a810ebf9e419556a60bdc0a4190883c38f4c4
tree1d9939773ab15d95620507f8af2b80c0c74aeedf
parente04a3905e4f2e93bbd8fca08c3baeed7b15a48cf
Use an unsigned char for bool if we don't use the native bool.

On (rare) platforms where sizeof(bool) > 1, we need to use our own
bool, but imported c99 code (such as Ryu) may want to use bool values
as array subscripts, which elicits warnings if bool is defined as
char. Using unsigned char instead should work just as well for our
purposes, and avoid such warnings.

Per buildfarm members prariedog and locust.
src/include/c.h