summaryrefslogtreecommitdiff
path: root/zenXml/zenxml/dom.h
diff options
context:
space:
mode:
Diffstat (limited to 'zenXml/zenxml/dom.h')
-rw-r--r--zenXml/zenxml/dom.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/zenXml/zenxml/dom.h b/zenXml/zenxml/dom.h
index b42d05d8..ff409eb1 100644
--- a/zenXml/zenxml/dom.h
+++ b/zenXml/zenxml/dom.h
@@ -317,7 +317,8 @@ private:
XmlDoc (const XmlDoc&) = delete; //not implemented, thanks to XmlElement::parent_
XmlDoc& operator=(const XmlDoc&) = delete;
- std::string version_ {"1.0"};
+ //std::string version_ {"1.0"}; -> who cares!?
+ std::string version_;
std::string encoding_{"utf-8"};
std::string standalone_;
bgstack15