From: Peter Eisentraut Date: Wed, 2 Apr 2025 12:34:24 +0000 (+0200) Subject: Fix code comment X-Git-Tag: REL_17_5~53 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b19893b94bdea3b206cb544619d84cea6276f648;p=thirdparty%2Fpostgresql.git Fix code comment The changes made in commit d2b4b4c2259 contained incorrect comments: They said that certain forward declarations were necessary to "avoid including pathnodes.h here", but the file is itself pathnodes.h! So change the comment to just say it's a forward declaration in one case, and in the other case we don't need the declaration at all because it already appeared earlier in the file. --- diff --git a/src/include/nodes/pathnodes.h b/src/include/nodes/pathnodes.h index 50b09781f25..576f1c7e9b9 100644 --- a/src/include/nodes/pathnodes.h +++ b/src/include/nodes/pathnodes.h @@ -1101,8 +1101,7 @@ typedef struct IndexOptInfo IndexOptInfo; #define HAVE_INDEXOPTINFO_TYPEDEF 1 #endif -struct IndexPath; /* avoid including pathnodes.h here */ -struct PlannerInfo; /* avoid including pathnodes.h here */ +struct IndexPath; /* forward declaration */ struct IndexOptInfo {