From 57e475ada03b412cf5c3cff65c7b70d671304116 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 25 Jun 2016 20:03:04 +0200 Subject: [PATCH] Fixes to send upstream (nw) --- 3rdparty/pugixml/src/pugixml.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/3rdparty/pugixml/src/pugixml.hpp b/3rdparty/pugixml/src/pugixml.hpp index 09bd6923dbc..9c41b14643c 100644 --- a/3rdparty/pugixml/src/pugixml.hpp +++ b/3rdparty/pugixml/src/pugixml.hpp @@ -273,7 +273,7 @@ namespace pugi // Construct writer from a FILE* object; void* is used to avoid header dependencies on stdio xml_writer_file(void* file); - virtual void write(const void* data, size_t size); + virtual void write(const void* data, size_t size) override; private: void* file; @@ -288,7 +288,7 @@ namespace pugi xml_writer_stream(std::basic_ostream >& stream); xml_writer_stream(std::basic_ostream >& stream); - virtual void write(const void* data, size_t size); + virtual void write(const void* data, size_t size) override; private: std::basic_ostream >* narrow_stream; @@ -1214,7 +1214,7 @@ namespace pugi explicit xpath_exception(const xpath_parse_result& result); // Get error message - virtual const char* what() const throw(); + virtual const char* what() const throw() override; // Get parse result const xpath_parse_result& result() const;