Commit f7913643 authored by Tom Lane's avatar Tom Lane

Remove -fno-operator-names switch from cpluspluscheck.

No longer needed now that bitand() and bitor() have been renamed.
parent 84fc5713
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment