[xmltooling] 48/65: Fix init order

Ferenc Wágner wferi-guest at moszumanska.debian.org
Thu Jun 30 13:07:41 UTC 2016


This is an automated email from the git hooks/post-receive script.

wferi-guest pushed a commit to branch debian/master
in repository xmltooling.

commit 57b532ba2aee2b0e198a3784c070d30e95c8d983
Author: Scott Cantor <cantor.2 at osu.edu>
Date:   Fri Jun 24 14:14:11 2016 -0400

    Fix init order
---
 xmltooling/util/ParserPool.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xmltooling/util/ParserPool.cpp b/xmltooling/util/ParserPool.cpp
index 55a8a65..5a66acd 100644
--- a/xmltooling/util/ParserPool.cpp
+++ b/xmltooling/util/ParserPool.cpp
@@ -575,12 +575,12 @@ BinInputStream* URLInputSource::makeStream() const
 #else
 
 URLInputSource::URLInputSource(const XMLCh* url, const char* systemId, string* cacheTag, std::string backingFile)
-    : InputSource(systemId), m_cacheTag(cacheTag), m_url(url), m_root(nullptr), m_backingFile(backingFile)
+    : InputSource(systemId), m_backingFile(backingFile), m_cacheTag(cacheTag), m_url(url), m_root(nullptr)
 {
 }
 
 URLInputSource::URLInputSource(const DOMElement* e, const char* systemId, string* cacheTag, std::string backingFile)
-    : InputSource(systemId), m_cacheTag(cacheTag), m_root(e), m_backingFile(backingFile)
+    : InputSource(systemId), m_backingFile(backingFile), m_cacheTag(cacheTag), m_root(e)
 {
 }
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-shibboleth/xmltooling.git



More information about the Pkg-shibboleth-devel mailing list