4 Commits

Author SHA1 Message Date
Jenkins
7c5b995b44 Tagged from libxml-cxx.deb #14 2013-03-06 14:51:28 +00:00
Marc Wäckerlin
48e9184f11 fix fedora-18 bug; closes #13 2013-01-25 14:37:35 +00:00
Marc Wäckerlin
b409d8408a other dependency for fedora; refs #12 2012-09-18 12:37:51 +00:00
Marc Wäckerlin
5b2c220bdb bugfix; refs #11 2012-07-06 11:54:14 +00:00
2 changed files with 7 additions and 2 deletions

View File

@@ -6,8 +6,13 @@ License: LGPL
Group: Development/Libraries/C++ Group: Development/Libraries/C++
URL: https://dev.marc.waeckerlin.org/projects/@PACKAGENAME@ URL: https://dev.marc.waeckerlin.org/projects/@PACKAGENAME@
Source0: %{name}-%{version}.tar.gz Source0: %{name}-%{version}.tar.gz
BuildRequires: subversion libcppunit-devel gcc-c++ doxygen graphviz texlive automake autoconf libtool make BuildRequires: subversion gcc-c++ doxygen graphviz texlive automake autoconf libtool make
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root 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 %description

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;
} }