summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-07-29 12:07:40 (GMT)
committerKitware Robot <kwrobot@kitware.com>2020-07-29 12:09:04 (GMT)
commit69a94b984621b6d70e65a4a4d0150ba395eb7a12 (patch)
treeea361c4be6203a8faf6928b7dd45fed3ad8bf7b4
parent783c6e0455a9ec0177158cff7868906d2a902c37 (diff)
parent9fc8e827c8a543e3976726e433ceeafaba145c8a (diff)
downloadCMake-69a94b984621b6d70e65a4a4d0150ba395eb7a12.zip
CMake-69a94b984621b6d70e65a4a4d0150ba395eb7a12.tar.gz
CMake-69a94b984621b6d70e65a4a4d0150ba395eb7a12.tar.bz2
Merge topic 'test-warning'
9fc8e827c8 Tests: Fix -Wsuggest-destructor-override warning in testCMExtMemory Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5075
-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() {}
};