diff --git a/NAS2D/Xml/XmlBase.cpp b/NAS2D/Xml/XmlBase.cpp index 2f15aa89..f10b2529 100644 --- a/NAS2D/Xml/XmlBase.cpp +++ b/NAS2D/Xml/XmlBase.cpp @@ -16,6 +16,11 @@ using namespace NAS2D::Xml; bool XmlBase::condenseWhiteSpace = true; +XmlBase::~XmlBase() +{ +} + + /** * Get the row of the node in the document. * diff --git a/NAS2D/Xml/XmlBase.h b/NAS2D/Xml/XmlBase.h index d79ac973..9a7e3afc 100644 --- a/NAS2D/Xml/XmlBase.h +++ b/NAS2D/Xml/XmlBase.h @@ -56,7 +56,7 @@ class XmlBase XmlBase() = default; XmlBase(const XmlBase&) = delete; void operator=(const XmlBase& base) = delete; - virtual ~XmlBase() = default; + virtual ~XmlBase(); /** * Writes the XML entity to a string buffer.