Thread: pgsql: Fix ill-chosen use of "private" as an argument and struct field

pgsql: Fix ill-chosen use of "private" as an argument and struct field

From
Tom Lane
Date:
Fix ill-chosen use of "private" as an argument and struct field name.

"private" is a keyword in C++, so this breaks the poorly-enforced policy
that header files should be include-able in C++ code.  Per report from
Craig Ringer and some investigation with cpluspluscheck.

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=275411912d96c160547a219cb3223efa3737f90d

Modified Files
--------------
src/backend/utils/fmgr/fmgr.c |    8 ++++----
src/include/fmgr.h            |    2 +-
2 files changed, 5 insertions(+), 5 deletions(-)