Remove -fno-operator-names switch from cpluspluscheck.

No longer needed now that bitand() and bitor() have been renamed.
This commit is contained in:
Tom Lane 2010-12-27 15:03:24 -05:00
parent 84fc571395
commit f79136439f

View file

@ -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