summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-07-28 14:06:31 (GMT)
committerBrad King <brad.king@kitware.com>2020-07-28 14:06:31 (GMT)
commit9fc8e827c8a543e3976726e433ceeafaba145c8a (patch)
tree4942602c84d16c47c8b5c3da59136cc2af35d07e
parent261a2585d9df7113a5ba7c9beacb641754444523 (diff)
downloadCMake-9fc8e827c8a543e3976726e433ceeafaba145c8a.zip
CMake-9fc8e827c8a543e3976726e433ceeafaba145c8a.tar.gz
CMake-9fc8e827c8a543e3976726e433ceeafaba145c8a.tar.bz2
Tests: Fix -Wsuggest-destructor-override warning in testCMExtMemory
-rw-r--r--Tests/CMakeLib/testCMExtMemory.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CMakeLib/testCMExtMemory.cxx b/Tests/CMakeLib/testCMExtMemory.cxx
index 6663c17..2aeaf7f 100644
--- a/Tests/CMakeLib/testCMExtMemory.cxx
+++ b/Tests/CMakeLib/testCMExtMemory.cxx
@@ -13,7 +13,7 @@ public:
class Derived : public Base
{
public:
- ~Derived() = default;
+ ~Derived() override = default;
void method() {}
};