ParseRDF.cpp contains code such as:
if ( ! (isArrayItem | isValueNode) ) {
|
if ( ! (isArrayItem | isValueNode) ) { |
This triggers the Clang warning -Wbitwise-instead-of-logical. These uses of the bitwise | operator should be changed to the logical || operator.