diff options
author | Daniel Wilhelm <shieldwed@outlook.com> | 2018-07-29 21:45:13 -0700 |
---|---|---|
committer | Daniel Wilhelm <shieldwed@outlook.com> | 2018-07-29 21:45:13 -0700 |
commit | 06c99e6c91d87a91f3e54191670d23e3f4d132b9 (patch) | |
tree | a2c82149d6fe802c68365f73e11f3c241c95ef3d /zenXml/zenxml | |
parent | 10.1 (diff) | |
download | FreeFileSync-06c99e6c91d87a91f3e54191670d23e3f4d132b9.tar.gz FreeFileSync-06c99e6c91d87a91f3e54191670d23e3f4d132b9.tar.bz2 FreeFileSync-06c99e6c91d87a91f3e54191670d23e3f4d132b9.zip |
10.2
Diffstat (limited to 'zenXml/zenxml')
-rwxr-xr-x | zenXml/zenxml/bind.h | 2 | ||||
-rwxr-xr-x | zenXml/zenxml/dom.h | 8 | ||||
-rwxr-xr-x | zenXml/zenxml/parser.h | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/zenXml/zenxml/bind.h b/zenXml/zenxml/bind.h index e33809d2..28f02745 100755 --- a/zenXml/zenxml/bind.h +++ b/zenXml/zenxml/bind.h @@ -55,7 +55,7 @@ void save(const XmlDoc& doc, const std::string& lineBreak = "\r\n", const std::string& indent = " ") //throw XmlFileError { - std::string stream = serialize(doc, lineBreak, indent); //throw () + std::string stream = serialize(doc, lineBreak, indent); //noexcept saveStream(stream, filename); //throw XmlFileError } diff --git a/zenXml/zenxml/dom.h b/zenXml/zenxml/dom.h index 566af330..8793d5bd 100755 --- a/zenXml/zenxml/dom.h +++ b/zenXml/zenxml/dom.h @@ -147,10 +147,10 @@ public: { public: using iterator_category = std::input_iterator_tag; - using value_type = T; - using difference_type = std::ptrdiff_t; - using pointer = T*; - using reference = T&; + using value_type = T; + using difference_type = ptrdiff_t; + using pointer = T*; + using reference = T&; PtrIter(IterTy it) : it_(it) {} PtrIter(const PtrIter& other) : it_(other.it_) {} diff --git a/zenXml/zenxml/parser.h b/zenXml/zenxml/parser.h index 76497ce7..a3975297 100755 --- a/zenXml/zenxml/parser.h +++ b/zenXml/zenxml/parser.h @@ -30,7 +30,7 @@ namespace zen */ std::string serialize(const XmlDoc& doc, const std::string& lineBreak = "\r\n", - const std::string& indent = " "); //throw () + const std::string& indent = " "); //noexcept ///Exception thrown due to an XML parsing error struct XmlParsingError : public XmlError |