Skip to content

Commit b31ae5f

Browse files
authored
Minor update (const)
1 parent e87c712 commit b31ae5f

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
@@ -549,7 +549,7 @@ void VerifyXML(const std::string& xml_text,
549549
{
550550
const std::string child_name = node->FirstChildElement()->Name();
551551
const auto child_search = registered_nodes.find(child_name);
552-
auto child_type = child_search->second;
552+
const auto child_type = child_search->second;
553553
if(child_type == NodeType::CONTROL &&
554554
((child_name == "ThreadedAction") ||
555555
(child_name == "StatefulActionNode") ||

0 commit comments

Comments
 (0)