1 Commits

Author SHA1 Message Date
Jenkins
d7c146dbbd Tagged from libxml-cxx.rpm #6 2012-01-16 15:08:04 +00:00
2 changed files with 2 additions and 7 deletions

View File

@@ -6,13 +6,8 @@ License: LGPL
Group: Development/Libraries/C++
URL: https://dev.marc.waeckerlin.org/projects/@PACKAGENAME@
Source0: %{name}-%{version}.tar.gz
BuildRequires: subversion gcc-c++ doxygen graphviz texlive automake autoconf libtool make
BuildRequires: subversion libcppunit-devel gcc-c++ doxygen graphviz texlive automake autoconf libtool make
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
%if 0%{?fedora} || 0%{?rhel_version} || 0%{?centos_version}
BuildRequires: cppunit-devel
%else%if 0%{?suse_version} || 0%{?sles_version}
BuildRequires: libcppunit-devel
%endif%endif
%description

View File

@@ -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
this->push_back(tmp);
push_back(tmp);
}
return is;
}