diff options
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/xml/libxml.h | 2 | ||||
-rw-r--r-- | src/utils/xml/pugixml.h | 2 | ||||
-rw-r--r-- | src/utils/xml/tinyxml2.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/xml/libxml.h b/src/utils/xml/libxml.h index 6ec0ce08d..1e4292e08 100644 --- a/src/utils/xml/libxml.h +++ b/src/utils/xml/libxml.h @@ -74,7 +74,7 @@ namespace XML /** * Destructor. Frees the loaded XML file. */ - ~Document(); + ~Document() override final; /** * Returns the root node of the document (or NULL if there was a diff --git a/src/utils/xml/pugixml.h b/src/utils/xml/pugixml.h index e4337140e..30d4e2d5b 100644 --- a/src/utils/xml/pugixml.h +++ b/src/utils/xml/pugixml.h @@ -74,7 +74,7 @@ namespace XML /** * Destructor. Frees the loaded XML file. */ - ~Document(); + ~Document() override final; /** * Returns the root node of the document (or NULL if there was a diff --git a/src/utils/xml/tinyxml2.h b/src/utils/xml/tinyxml2.h index f056dc43a..1db1f7421 100644 --- a/src/utils/xml/tinyxml2.h +++ b/src/utils/xml/tinyxml2.h @@ -74,7 +74,7 @@ namespace XML /** * Destructor. Frees the loaded XML file. */ - ~Document(); + ~Document() override final; /** * Returns the root node of the document (or NULL if there was a |