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.
ParseRDF.cpp contains code such as:
if ( ! (isArrayItem | isValueNode) ) {XMP-Toolkit-SDK/XMPCore/source/ParseRDF.cpp
Line 508 in 581c412
This triggers the Clang warning
-Wbitwise-instead-of-logical. These uses of the bitwise|operator should be changed to the logical||operator.