andry81 - 2020-05-01

I've a fork with patched implementation to explicitly declare a self-closed tag: https://sourceforge.net/p/tacklelib/3dparty--rapidxml/HEAD/tree/branches/

Example:

for (rapidxml::xml_node<> * node = ...; node; node = node->next_sibling())
{
  node->flags(node->flags() & ~rapidxml::node_self_closed_tag);
}