diff options
author | Sean McBride <sean@rogue-research.com> | 2021-10-14 16:13:23 (GMT) |
---|---|---|
committer | Sean McBride <sean@rogue-research.com> | 2021-10-15 15:23:12 (GMT) |
commit | e2a4718d186d4848bae2beb926279ea334e0fef3 (patch) | |
tree | c5f6f7ed5526d131bc534cb6bd6a86c00361f917 /Source/CTest | |
parent | 315fc296e3c1ecddbf59a2144b0dff9a05c715ed (diff) | |
download | CMake-e2a4718d186d4848bae2beb926279ea334e0fef3.zip CMake-e2a4718d186d4848bae2beb926279ea334e0fef3.tar.gz CMake-e2a4718d186d4848bae2beb926279ea334e0fef3.tar.bz2 |
Source: Fix Clang -Wdeprecated warnings
Applied C++ 'rule of three'.
Diffstat (limited to 'Source/CTest')
-rw-r--r-- | Source/CTest/cmCTestTestHandler.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestTestHandler.cxx b/Source/CTest/cmCTestTestHandler.cxx index 6e97a83..34088d2 100644 --- a/Source/CTest/cmCTestTestHandler.cxx +++ b/Source/CTest/cmCTestTestHandler.cxx @@ -59,6 +59,8 @@ public: } virtual ~cmCTestCommand() = default; + cmCTestCommand(const cmCTestCommand&) = default; + cmCTestCommand& operator=(const cmCTestCommand&) = default; bool operator()(std::vector<cmListFileArgument> const& args, cmExecutionStatus& status) |