Skip to content

Commit c985760

Browse files
authored
DPL: actually populate Dict with associated ptree (#7839)
1 parent e794b76 commit c985760

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Framework/Core/src/PropertyTreeHelpers.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ void PropertyTreeHelpers::populate(std::vector<ConfigParamSpec> const& schema,
186186
pt.put_child(key, array2DToBranch<double>(stringToArray2D<double>(vmap[key].as<std::string>())));
187187
break;
188188
case VariantType::Dict:
189-
pt.put_child(key, boost::property_tree::ptree{});
189+
pt.put_child(key, vmap[key].as<boost::property_tree::ptree>());
190190
break;
191191
case VariantType::Unknown:
192192
case VariantType::Empty:

0 commit comments

Comments
 (0)