aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/inet_net_pton.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2024-12-24 11:48:08 +0100
committerPeter Eisentraut <peter@eisentraut.org>2024-12-24 11:49:07 +0100
commit1eb7cb21c2a2c9091bc4cdf09d37d68559af8a7d (patch)
tree8fe692d050cca2c65f8eb70c1966cc9a37967687 /src/backend/utils/adt/inet_net_pton.c
parent6f3820f37aba94232468365bae7ba5de697fe993 (diff)
downloadpostgresql-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/utils/adt/inet_net_pton.c')
-rw-r--r--src/backend/utils/adt/inet_net_pton.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/utils/adt/inet_net_pton.c b/src/backend/utils/adt/inet_net_pton.c
index d3221a13139..ef2236d9f04 100644
--- a/src/backend/utils/adt/inet_net_pton.c
+++ b/src/backend/utils/adt/inet_net_pton.c
@@ -29,8 +29,7 @@ static const char rcsid[] = "Id: inet_net_pton.c,v 1.4.2.3 2004/03/17 00:40:11 m
#include <assert.h>
#include <ctype.h>
-#include "utils/builtins.h" /* pgrminclude ignore */ /* needed on some
- * platforms */
+#include "utils/builtins.h" /* needed on some platforms */
#include "utils/inet.h"