mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 14:40:26 -06:00
clang-tidy: Use = delete
This commit is contained in:
committed by
Brad King
parent
d75fec5a88
commit
b05b778a2d
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user