1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-22 23:02:54 +03:00

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.
This commit is contained in:
Andrew Gierth 2019-02-20 21:31:02 +00:00
parent e04a3905e4
commit d26a810ebf

View File

@ -305,7 +305,7 @@
#else
#ifndef bool
typedef char bool;
typedef unsigned char bool;
#endif
#ifndef true