mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 02:39:48 -06:00
clang-tidy: Use = delete
This commit is contained in:
committed by
Brad King
parent
d75fec5a88
commit
b05b778a2d
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user