Skip to content

Commit ab5e014

Browse files
committed
bug fix
1 parent fd3f328 commit ab5e014

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xml_parsing.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,7 @@ void BT::XMLParser::PImpl::recursivelyCreateSubtree(
841841
{
842842
auto it = remapping.find(port_name);
843843
// don't override existing remapping
844-
if( it == remapping.end() & !do_autoremap)
844+
if( it == remapping.end() && !do_autoremap)
845845
{
846846
// remapping is not explicitly defined in the XML: use the model
847847
if(port_info.defaultValueString().empty())

0 commit comments

Comments
 (0)