]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Clean up cpluspluscheck violation.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 20 May 2021 17:03:09 +0000 (13:03 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 20 May 2021 17:03:09 +0000 (13:03 -0400)
commit85c809496d75361aae03d70c68c286f8e2255c68
treefff96698833ba74ff04fb17902ca16e5474b0c65
parent943bda157ecad3b08c875716b7def77443ec2151
Clean up cpluspluscheck violation.

"typename" is a C++ keyword, so pg_upgrade.h fails to compile in C++.
Fortunately, there seems no likely reason for somebody to need to
do that.  Nonetheless, it's project policy that all .h files should
pass cpluspluscheck, so rename the argument to fix that.

Oversight in 57c081de0; back-patch as that was.  (The policy requiring
pg_upgrade.h to pass cpluspluscheck only goes back to v12, but it
seems best to keep this code looking the same in all branches.)
src/bin/pg_upgrade/pg_upgrade.h
src/bin/pg_upgrade/version.c