mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-01 03:29:18 -05:00
clang-tidy: Use = delete
This commit is contained in:
committed by
Brad King
parent
d75fec5a88
commit
b05b778a2d
@@ -21,8 +21,6 @@ class cmMakefile;
|
||||
*/
|
||||
class cmInstallGenerator : public cmScriptGenerator
|
||||
{
|
||||
CM_DISABLE_COPY(cmInstallGenerator)
|
||||
|
||||
public:
|
||||
enum MessageLevel
|
||||
{
|
||||
@@ -38,6 +36,9 @@ public:
|
||||
bool exclude_from_all);
|
||||
~cmInstallGenerator() override;
|
||||
|
||||
cmInstallGenerator(cmInstallGenerator const&) = delete;
|
||||
cmInstallGenerator& operator=(cmInstallGenerator const&) = delete;
|
||||
|
||||
virtual bool HaveInstall();
|
||||
virtual void CheckCMP0082(bool& haveSubdirectoryInstall,
|
||||
bool& haveInstallAfterSubdirectory);
|
||||
|
||||
Reference in New Issue
Block a user