2 Commits

Author SHA1 Message Date
Marc Wäckerlin
5578c26db3 Tagged from libxml-cxx.deb #11 2012-07-06 12:41:00 +00:00
Marc Wäckerlin
5b2c220bdb bugfix; refs #11 2012-07-06 11:54:14 +00:00

View File

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