summaryrefslogtreecommitdiff
path: root/zenXml
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-01-22 13:56:55 -0500
committerB. Stack <bgstack15@gmail.com>2023-01-22 13:56:55 -0500
commit75e05bc441382db69c842a64c562738cb749214e (patch)
tree698b60b3b4b914bf7958cf1174d0373909bf1e8f /zenXml
parentadd upstream 11.29 (diff)
downloadFreeFileSync-75e05bc441382db69c842a64c562738cb749214e.tar.gz
FreeFileSync-75e05bc441382db69c842a64c562738cb749214e.tar.bz2
FreeFileSync-75e05bc441382db69c842a64c562738cb749214e.zip
add upstream 12.0
Diffstat (limited to 'zenXml')
-rw-r--r--zenXml/zenxml/dom.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/zenXml/zenxml/dom.h b/zenXml/zenxml/dom.h
index ff409eb1..cba12cfb 100644
--- a/zenXml/zenxml/dom.h
+++ b/zenXml/zenxml/dom.h
@@ -317,8 +317,7 @@ private:
XmlDoc (const XmlDoc&) = delete; //not implemented, thanks to XmlElement::parent_
XmlDoc& operator=(const XmlDoc&) = delete;
- //std::string version_ {"1.0"}; -> who cares!?
- std::string version_;
+ std::string version_ {"1.0"}; //non-optional for valid XML
std::string encoding_{"utf-8"};
std::string standalone_;
bgstack15