]> granicus.if.org Git - postgresql/commit
Fix assorted header files that failed to compile standalone.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 31 May 2019 15:45:33 +0000 (11:45 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 31 May 2019 15:45:33 +0000 (11:45 -0400)
commit7640f9312321ceba2af61f7017da7e64f0f7b667
treebd42ca762cdd5769c23f06c7888bd0f72e351402
parent9e58705a7f9728f10b2e0f0c9adc6e6ecff7486e
Fix assorted header files that failed to compile standalone.

We have a longstanding project convention that all .h files should
be includable with no prerequisites other than postgres.h.  This is
tested/relied-on by cpluspluscheck.  However, cpluspluscheck has not
historically been applied to most headers outside the src/include
tree, with the predictable consequence that some of them don't work.
Fix that, usually by adding missing #include dependencies.

The change in printf_hack.h might require some explanation: without
it, my C++ compiler whines that the function is unused.  There's
not so many call sites that "inline" is going to cost much, and
besides all the callers are in test code that we really don't care
about the size of.

There's no actual bugs being fixed here, so I see no need to back-patch.

Discussion: https://postgr.es/m/b517ec3918d645eb950505eac8dd434e@gaz-is.ru
13 files changed:
src/bin/pg_waldump/rmgrdesc.h
src/bin/psql/crosstabview.h
src/interfaces/ecpg/ecpglib/ecpglib_extern.h
src/interfaces/ecpg/test/printf_hack.h
src/interfaces/libpq/fe-gssapi-common.h
src/pl/plperl/plperl_helpers.h
src/pl/plpython/plpy_elog.h
src/pl/plpython/plpy_resultobject.h
src/pl/plpython/plpy_spi.h
src/pl/plpython/plpy_subxactobject.h
src/pl/plpython/plpy_typeio.h
src/pl/plpython/plpy_util.h
src/pl/plpython/plpython.h