Skip to content
Snippets Groups Projects
Commit b6528610 authored by Andrew Wilson's avatar Andrew Wilson :elephant:
Browse files

REFAC: Remove redundant virtuals

parent f1374ec5
No related branches found
No related tags found
No related merge requests found
......@@ -190,7 +190,7 @@ public:
other.m_mapped = true; // The others destructor should then not delete
}
virtual ~DataArray() override
~DataArray() override
{
if (!m_mapped)
{
......
......@@ -183,7 +183,7 @@ public:
other.m_mapped = true;
}
virtual ~VecDataArray() override = default;
~VecDataArray() override = default;
///
/// \brief Templated copy the current array with a new internal data type, does not change the number
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment