diff options
author | John Naylor <john.naylor@postgresql.org> | 2021-09-23 15:14:22 -0400 |
---|---|---|
committer | John Naylor <john.naylor@postgresql.org> | 2021-09-23 15:23:48 -0400 |
commit | a315b19cceeb2ccbe17c7ddd6e7c90911b325f9b (patch) | |
tree | ed1ffa212113544020ca014656ddf49379033934 /src/tools/pginclude/cpluspluscheck | |
parent | b92f9f74436c48054e7743548edc8ca50e97c6b1 (diff) | |
download | postgresql-a315b19cceeb2ccbe17c7ddd6e7c90911b325f9b.tar.gz postgresql-a315b19cceeb2ccbe17c7ddd6e7c90911b325f9b.zip |
Add exception for unicode_east_asian_fw_table.h to cpluspluscheck
unicode_east_asian_fw_table.h should not be compiled standalone, similarly
to unicode_combining_table.h, but cpluspluscheck did not get the memo.
Oversight in bab982161.
Per report from Tom Lane
Diffstat (limited to 'src/tools/pginclude/cpluspluscheck')
-rwxr-xr-x | src/tools/pginclude/cpluspluscheck | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/pginclude/cpluspluscheck b/src/tools/pginclude/cpluspluscheck index e52d5e42408..c9cb19b43e7 100755 --- a/src/tools/pginclude/cpluspluscheck +++ b/src/tools/pginclude/cpluspluscheck @@ -114,6 +114,7 @@ do # Also not meant to be included standalone. test "$f" = src/include/common/unicode_combining_table.h && continue + test "$f" = src/include/common/unicode_east_asian_fw_table.h && continue # We can't make these Bison output files compilable standalone # without using "%code require", which old Bison versions lack. |