summaryrefslogtreecommitdiff
path: root/Source/cmCPackPropertiesGenerator.h
diff options
context:
space:
mode:
authorRegina Pfeifer <regina@mailbox.org>2019-01-23 20:30:01 +0100
committerBrad King <brad.king@kitware.com>2019-01-29 14:09:21 -0500
commitb05b778a2dfbcb6978d652dfa27bd52cc649f736 (patch)
tree93eb16efaa0aa9209a47e48ee7cedea1753dc88a /Source/cmCPackPropertiesGenerator.h
parentd75fec5a88f81a8c16cdeab46766e92a14d1d3cf (diff)
downloadcmake-b05b778a2dfbcb6978d652dfa27bd52cc649f736.tar.gz
clang-tidy: Use `= delete`
Diffstat (limited to 'Source/cmCPackPropertiesGenerator.h')
-rw-r--r--Source/cmCPackPropertiesGenerator.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmCPackPropertiesGenerator.h b/Source/cmCPackPropertiesGenerator.h
index e580e044bb..ad943c588a 100644
--- a/Source/cmCPackPropertiesGenerator.h
+++ b/Source/cmCPackPropertiesGenerator.h
@@ -20,13 +20,15 @@ class cmLocalGenerator;
*/
class cmCPackPropertiesGenerator : public cmScriptGenerator
{
- CM_DISABLE_COPY(cmCPackPropertiesGenerator)
-
public:
cmCPackPropertiesGenerator(cmLocalGenerator* lg,
cmInstalledFile const& installedFile,
std::vector<std::string> const& configurations);
+ cmCPackPropertiesGenerator(cmCPackPropertiesGenerator const&) = delete;
+ cmCPackPropertiesGenerator& operator=(cmCPackPropertiesGenerator const&) =
+ delete;
+
protected:
void GenerateScriptForConfig(std::ostream& os, const std::string& config,
Indent indent) override;