diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-12-24 11:48:08 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-12-24 11:49:07 +0100 |
commit | 1eb7cb21c2a2c9091bc4cdf09d37d68559af8a7d (patch) | |
tree | 8fe692d050cca2c65f8eb70c1966cc9a37967687 /src/backend/regex/regerror.c | |
parent | 6f3820f37aba94232468365bae7ba5de697fe993 (diff) | |
download | postgresql-1eb7cb21c2a2c9091bc4cdf09d37d68559af8a7d.tar.gz postgresql-1eb7cb21c2a2c9091bc4cdf09d37d68559af8a7d.zip |
Remove pgrminclude annotations
Per git log, the last time someone tried to do something with
pgrminclude was around 2011. Many (not all) of the "pgrminclude
ignore" annotations are of a newer date but seem to have just been
copied around during refactorings and file moves and don't seem to
reflect an actual need anymore.
There have been some parallel experiments with include-what-you-use
(IWYU) annotations, but these don't seem to correspond very strongly
to pgrminclude annotations, so there is no value in keeping the
existing ones even for that kind of thing.
So, wipe them all away. We can always add new ones in the future
based on actual needs.
Discussion: https://www.postgresql.org/message-id/flat/2d4dc7b2-cb2e-49b1-b8ca-ba5f7024f05b%40eisentraut.org
Diffstat (limited to 'src/backend/regex/regerror.c')
-rw-r--r-- | src/backend/regex/regerror.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/regex/regerror.c b/src/backend/regex/regerror.c index 4a27c2552cb..c69aaf27747 100644 --- a/src/backend/regex/regerror.c +++ b/src/backend/regex/regerror.c @@ -46,7 +46,7 @@ static const struct rerr { /* the actual table is built from regex.h */ -#include "regex/regerrs.h" /* pgrminclude ignore */ +#include "regex/regerrs.h" { -1, "", "oops" }, /* explanation special-cased in code */ |