diff options
author | Brad King <brad.king@kitware.com> | 2019-01-30 19:00:47 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-01-30 19:00:58 (GMT) |
commit | eb2c23868fe712a0c79b3afe6618e20507c0f9f5 (patch) | |
tree | 8414fc263dd01dbcee636d531638291fd7a17c34 /Source/cmQtAutoGenerator.h | |
parent | 748d024551d8f447046363ad617fc72bdd977fd2 (diff) | |
parent | b05b778a2dfbcb6978d652dfa27bd52cc649f736 (diff) | |
download | CMake-eb2c23868fe712a0c79b3afe6618e20507c0f9f5.zip CMake-eb2c23868fe712a0c79b3afe6618e20507c0f9f5.tar.gz CMake-eb2c23868fe712a0c79b3afe6618e20507c0f9f5.tar.bz2 |
Merge topic 'tidy-use-equals-delete'
b05b778a2d clang-tidy: Use `= delete`
Acked-by: Kitware Robot <kwrobot@kitware.com>
Rejected-by: vvs31415 <vstakhovsky@fastmail.com>
Merge-request: !2848
Diffstat (limited to 'Source/cmQtAutoGenerator.h')
-rw-r--r-- | Source/cmQtAutoGenerator.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmQtAutoGenerator.h b/Source/cmQtAutoGenerator.h index 2b9cbc6..9956a99 100644 --- a/Source/cmQtAutoGenerator.h +++ b/Source/cmQtAutoGenerator.h @@ -24,7 +24,6 @@ class cmMakefile; /// @brief Base class for QtAutoGen gernerators class cmQtAutoGenerator : public cmQtAutoGen { - CM_DISABLE_COPY(cmQtAutoGenerator) public: // -- Types @@ -245,6 +244,9 @@ public: cmQtAutoGenerator(); virtual ~cmQtAutoGenerator(); + cmQtAutoGenerator(cmQtAutoGenerator const&) = delete; + cmQtAutoGenerator& operator=(cmQtAutoGenerator const&) = delete; + // -- Run bool Run(std::string const& infoFile, std::string const& config); |