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

From Tom Lane
Subject pgsql: Fix ill-chosen use of "private" as an argument and struct field
Date
Msg-id E1PXFuU-0005vF-L5@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
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(-)


pgsql-committers by date:

Previous
From: Alvaro Herrera
Date:
Subject: pgsql: Break up long line, per Leslie S Satenstein.
Next
From: Tom Lane
Date:
Subject: pgsql: Tweak cpluspluscheck to avoid directly #include'ing gram.h.