Suppress compiler warnings about useless comparison of unsigned to zero.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 15 Feb 2016 22:11:52 +0000 (17:11 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 15 Feb 2016 22:11:52 +0000 (17:11 -0500)
commite1df79117a9c3a65b15e9700dd177e4edbae1ad5
treedb271f2e4818524bf10a3758216de5cc9ff68b8a
parent198242ede432f78561eb043c412a19fc88ddbed9
Suppress compiler warnings about useless comparison of unsigned to zero.

Reportedly, some compilers warn about tests like "c < 0" if c is unsigned,
and hence complain about the character range checks I added in commit
3bb3f42f3749d40b8d4de65871e8d828b18d4a45.  This is a bit of a pain since
the regex library doesn't really want to assume that chr is unsigned.
However, since any such reconfiguration would involve manual edits of
regcustom.h anyway, we can put it on the shoulders of whoever wants to
do that to adjust this new range-checking macro correctly.

Per gripes from Coverity and Andres.
src/backend/regex/regc_lex.c
src/include/regex/regcustom.h