diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2020-01-24 12:23:06 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2020-01-24 12:23:06 +0100 |
commit | cc25464763f0211e59a209eb50a7b7a79449051f (patch) | |
tree | a9744c8b0ca098d47b74ce3a2f5b66d68b8026c6 /src/tools/pginclude/cpluspluscheck | |
parent | a7a848844d74e63ee102717972de3e60b5f4549a (diff) | |
download | postgresql-cc25464763f0211e59a209eb50a7b7a79449051f.tar.gz postgresql-cc25464763f0211e59a209eb50a7b7a79449051f.zip |
Add exclusion to headercheck
src/include/common/unicode_combining_table.h is currently not meant to
be included standalone. Things could be refactored to allow it, but
that would be beyond the present purpose. So adding an exclusion here
seems best.
Discussion: https://www.postgresql.org/message-id/10754.1579535012@sss.pgh.pa.us
Diffstat (limited to 'src/tools/pginclude/cpluspluscheck')
-rwxr-xr-x | src/tools/pginclude/cpluspluscheck | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/pginclude/cpluspluscheck b/src/tools/pginclude/cpluspluscheck index dc45bd087b1..531fab904cf 100755 --- a/src/tools/pginclude/cpluspluscheck +++ b/src/tools/pginclude/cpluspluscheck @@ -110,6 +110,9 @@ do test "$f" = src/pl/plpython/spiexceptions.h && continue test "$f" = src/pl/tcl/pltclerrcodes.h && continue + # Also not meant to be included standalone. + test "$f" = src/include/common/unicode_combining_table.h && continue + # We can't make these Bison output files compilable standalone # without using "%code require", which old Bison versions lack. # parser/gram.h will be included by parser/gramparse.h anyway. |