diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-01-23 20:30:01 +0100 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-29 14:09:21 -0500 |
commit | b05b778a2dfbcb6978d652dfa27bd52cc649f736 (patch) | |
tree | 93eb16efaa0aa9209a47e48ee7cedea1753dc88a /Source/cmDependsJava.h | |
parent | d75fec5a88f81a8c16cdeab46766e92a14d1d3cf (diff) | |
download | cmake-b05b778a2dfbcb6978d652dfa27bd52cc649f736.tar.gz |
clang-tidy: Use `= delete`
Diffstat (limited to 'Source/cmDependsJava.h')
-rw-r--r-- | Source/cmDependsJava.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmDependsJava.h b/Source/cmDependsJava.h index 1928c512bc..109ef13d16 100644 --- a/Source/cmDependsJava.h +++ b/Source/cmDependsJava.h @@ -17,8 +17,6 @@ */ class cmDependsJava : public cmDepends { - CM_DISABLE_COPY(cmDependsJava) - public: /** Checking instances need to know the build directory name and the relative path from the build directory to the target file. */ @@ -27,6 +25,9 @@ public: /** Virtual destructor to cleanup subclasses properly. */ ~cmDependsJava() override; + cmDependsJava(cmDependsJava const&) = delete; + cmDependsJava& operator=(cmDependsJava const&) = delete; + protected: // Implement writing/checking methods required by superclass. bool WriteDependencies(const std::set<std::string>& sources, |