summaryrefslogtreecommitdiffstats
path: root/Source/cmCustomCommandGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-02-18 14:04:51 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-02-18 14:05:30 (GMT)
commit03e10384ecb779ba6e02028d6833c5e8cd3541c5 (patch)
treee047b7a811df56c09eace140841b28ea1d0d0da6 /Source/cmCustomCommandGenerator.h
parentd2489f2fde0adad51272b83e44957860f7b4c57f (diff)
parentae5e97a00568d15dedea073b58668e646e3c0d2e (diff)
downloadCMake-03e10384ecb779ba6e02028d6833c5e8cd3541c5.zip
CMake-03e10384ecb779ba6e02028d6833c5e8cd3541c5.tar.gz
CMake-03e10384ecb779ba6e02028d6833c5e8cd3541c5.tar.bz2
Merge topic 'delete_copy_assign'
ae5e97a005 Delete some default constructors and assignment operators Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2968
Diffstat (limited to 'Source/cmCustomCommandGenerator.h')
-rw-r--r--Source/cmCustomCommandGenerator.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmCustomCommandGenerator.h b/Source/cmCustomCommandGenerator.h
index 9684cff..7fd60c0 100644
--- a/Source/cmCustomCommandGenerator.h
+++ b/Source/cmCustomCommandGenerator.h
@@ -32,6 +32,9 @@ public:
cmCustomCommandGenerator(cmCustomCommand const& cc, std::string config,
cmLocalGenerator* lg);
~cmCustomCommandGenerator();
+ cmCustomCommandGenerator(const cmCustomCommandGenerator&) = delete;
+ cmCustomCommandGenerator& operator=(const cmCustomCommandGenerator&) =
+ delete;
cmCustomCommand const& GetCC() const { return this->CC; }
unsigned int GetNumberOfCommands() const;
std::string GetCommand(unsigned int c) const;