mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 21:59:54 -06:00
clang-tidy: Use = delete
This commit is contained in:
committed by
Brad King
parent
d75fec5a88
commit
b05b778a2d
@@ -27,12 +27,13 @@ class cmTarget;
|
||||
|
||||
class cmGeneratorTarget
|
||||
{
|
||||
CM_DISABLE_COPY(cmGeneratorTarget)
|
||||
|
||||
public:
|
||||
cmGeneratorTarget(cmTarget*, cmLocalGenerator* lg);
|
||||
~cmGeneratorTarget();
|
||||
|
||||
cmGeneratorTarget(cmGeneratorTarget const&) = delete;
|
||||
cmGeneratorTarget& operator=(cmGeneratorTarget const&) = delete;
|
||||
|
||||
cmLocalGenerator* GetLocalGenerator() const;
|
||||
|
||||
cmGlobalGenerator* GetGlobalGenerator() const;
|
||||
|
||||
Reference in New Issue
Block a user