]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix C23 compiler warning
authorPeter Eisentraut <peter@eisentraut.org>
Tue, 22 Oct 2024 06:12:43 +0000 (08:12 +0200)
committerPeter Eisentraut <peter@eisentraut.org>
Tue, 26 Nov 2024 12:37:06 +0000 (13:37 +0100)
commitf7a929a007e64aa9a2c7d65555029ae90c5ed6bd
tree345a520c317a8ba774867a4af63937db34192233
parentae145d1de6773d43169f7aefb5666fe9ecb6d470
Fix C23 compiler warning

The approach of declaring a function pointer with an empty argument
list and hoping that the compiler will not complain about casting it
to another type no longer works with C23, because foo() is now
equivalent to foo(void).

We don't need to do this here.  With a few struct forward declarations
we can supply a correct argument list without having to pull in
another header file.

(This is the only new warning with C23.  Together with the previous
fix a67a49648d9, this makes the whole code compile cleanly under C23.)

Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://www.postgresql.org/message-id/flat/95c6a9bf-d306-43d8-b880-664ef08f2944%40eisentraut.org
Discussion: https://www.postgresql.org/message-id/flat/87o72eo9iu.fsf%40gentoo.org
src/include/nodes/pathnodes.h