[cpp-xmltooling] branch master updated: Fix init order
Scott Cantor
cantor.2 at osu.edu
Fri Jun 24 14:13:56 EDT 2016
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch master
in repository cpp-xmltooling.
View the commit online:
http://git.shibboleth.net/view/?p=cpp-xmltooling.git;a=commit;h=57b532ba2aee2b0e198a3784c070d30e95c8d983
The following commit(s) were added to refs/heads/master by this push:
new 57b532b Fix init order
57b532b is described below
commit 57b532ba2aee2b0e198a3784c070d30e95c8d983
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: 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)
{
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list