diff options
| author | Tom Lane | 2010-12-27 20:03:24 +0000 |
|---|---|---|
| committer | Tom Lane | 2010-12-27 20:03:24 +0000 |
| commit | f79136439f250f3eab6792870353a83ad993e71f (patch) | |
| tree | ba44d7d071bb6d3f886301dfa89c435f3540616a /src/tools | |
| parent | 84fc571395f6986d912cda6c09826cb10caee7f0 (diff) | |
Remove -fno-operator-names switch from cpluspluscheck.
No longer needed now that bitand() and bitor() have been renamed.
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/pginclude/cpluspluscheck | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/tools/pginclude/cpluspluscheck b/src/tools/pginclude/cpluspluscheck index d6b04f5b640..1f0fa47ba81 100644 --- a/src/tools/pginclude/cpluspluscheck +++ b/src/tools/pginclude/cpluspluscheck @@ -30,7 +30,5 @@ do echo '};' } >$tmp/test.cpp - # -fno-operator-names omits the definition of bitand and bitor, which - # collide with varbit.h. Could be fixed, if one were so inclined. - ${CXX:-g++} -I . -I src/include -fsyntax-only -fno-operator-names -Wall -c $tmp/test.cpp + ${CXX:-g++} -I . -I src/include -fsyntax-only -Wall -c $tmp/test.cpp done |
