bugfix; refs #11

master
Marc Wäckerlin 12 years ago
parent a63ffb0161
commit 5b2c220bdb
  1. 2
      src/xml-cxx/xml.hxx

@ -1303,7 +1303,7 @@ namespace xml {
for (xml::Node::size_type i(0); i<node->children(); ++i) {
typename CONTAINER_TYPE::value_type tmp;
Serialize::fromNode(&tmp, (*node)[i]); // reads into tmp
push_back(tmp);
this->push_back(tmp);
}
return is;
}

Loading…
Cancel
Save