Considering the following xml element:
<elem>
<sub_elem name="first">
<sub_elem name="second">
</elem>
Concerning the property tree populated by boost::property_tree::xml_parser::read_xml, is it guaranteed that sub_elem "first" will be before sub_elem "second"?
The documentation states:
Reads XML from an input stream and translates it to property tree.
However it depends what "translates" means exactly.