pgsql: Clean up cpluspluscheck violation.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Clean up cpluspluscheck violation.
Date: 2020-04-21 15:21:26
Message-ID: E1jQuiE-0000V2-RM@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Clean up cpluspluscheck violation.

"operator" is a reserved word in C++, so per project conventions,
don't use it as an identifier in header files.

My oversight in commit a80818605.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/9d25e1aa311c0f0c77155382e6608545b7bf579c

Modified Files
--------------
src/backend/utils/adt/selfuncs.c | 4 ++--
src/include/utils/selfuncs.h | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2020-04-21 16:57:02 pgsql: Allow matchingsel() to be used with operators that might return
Previous Message Fujii Masao 2020-04-21 05:06:36 pgsql: Mention pg_promote() as a method to trigger promotion in documen