pgsql: Remove stdbool workaround in sepgsql

From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Remove stdbool workaround in sepgsql
Date: 2018-03-23 02:03:44
Message-ID: E1ezC3U-000876-Rh@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove stdbool workaround in sepgsql

Since we now use stdbool.h in c.h, this workaround breaks the build and
is no longer necessary, so remove it. (Technically, there could be
platforms with a 4-byte bool in stdbool.h, in which case we would not
include stdbool.h in c.h, and so the old problem that caused this
workaround would reappear. But this combination is not known to happen
on the range of platforms where sepgsql can be built.)

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/5c4920be303e0ab894c9a3a48e780b7e0e56240b

Modified Files
--------------
contrib/sepgsql/label.c | 8 --------
1 file changed, 8 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2018-03-23 02:36:28 pgsql: Fix whitespace
Previous Message Andres Freund 2018-03-23 01:25:01 Re: pgsql: Use stdbool.h if suitable