Skip to content

Commit 3330fdd

Browse files
committed
(wire_core) fix bitwise-instead-of-logical
1 parent 06269df commit 3330fdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wire_core/src/util/ObjectModelParser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ bool ObjectModelParser::parseStateEstimator(ClassModel* obj_model, const tinyxml
104104
// check behavior model's attribute and model type
105105
std::string attribute_name, model_type;
106106
if (!getAttributeValue(elem, "attribute", attribute_name, error)
107-
| !getAttributeValue(elem, "model", model_type, error)) {
107+
|| !getAttributeValue(elem, "model", model_type, error)) {
108108
return false;
109109
}
110110

0 commit comments

Comments
 (0)