From 328eaa8ded37e86f2575cb2804d1aaa36cdd4a1b Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 7 Feb 2015 17:35:02 +0300 Subject: Remove optional parameter from xml document constructor. --- src/utils/xml.h | 2 +- src/utils/xmlutils.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/utils') diff --git a/src/utils/xml.h b/src/utils/xml.h index c8c15a719..dd06f8df1 100644 --- a/src/utils/xml.h +++ b/src/utils/xml.h @@ -66,7 +66,7 @@ namespace XML * resource manager. Logs errors. */ explicit Document(const std::string &filename, - const bool useResman = true); + const bool useResman); /** * Constructor that attempts to load an XML document from memory. diff --git a/src/utils/xmlutils.cpp b/src/utils/xmlutils.cpp index 64ae45209..2e4a7d736 100644 --- a/src/utils/xmlutils.cpp +++ b/src/utils/xmlutils.cpp @@ -34,7 +34,7 @@ void readXmlIntVector(const std::string &fileName, std::vector &arr) { arr.clear(); - XML::Document doc(fileName); + XML::Document doc(fileName, true); const XmlNodePtrConst rootNode = doc.rootNode(); if (!rootNode || !xmlNameEqual(rootNode, rootName.c_str())) -- cgit v1.2.3-60-g2f50