Fix templated type of xml_writer_settings

This commit is contained in:
Simon Giraudot 2017-08-30 11:24:27 +02:00
parent b0086bdf16
commit 3d65b7746b
1 changed files with 1 additions and 1 deletions

View File

@ -684,7 +684,7 @@ public:
}
// Write property tree to XML file
boost::property_tree::xml_writer_settings<std::string> settings(' ', 3);
boost::property_tree::xml_writer_settings<boost::property_tree::ptree::key_type> settings(' ', 3);
boost::property_tree::write_xml(output, tree, settings);
}