From 5b2c220bdb9020985f9f67aa847e14ed41c2f200 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=A4ckerlin?= Date: Fri, 6 Jul 2012 11:54:14 +0000 Subject: [PATCH] bugfix; refs #11 --- src/xml-cxx/xml.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xml-cxx/xml.hxx b/src/xml-cxx/xml.hxx index d049239..10f3cd1 100644 --- a/src/xml-cxx/xml.hxx +++ b/src/xml-cxx/xml.hxx @@ -1303,7 +1303,7 @@ namespace xml { for (xml::Node::size_type i(0); ichildren(); ++i) { typename CONTAINER_TYPE::value_type tmp; Serialize::fromNode(&tmp, (*node)[i]); // reads into tmp - push_back(tmp); + this->push_back(tmp); } return is; }