diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-01-23 20:30:01 +0100 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-29 14:09:21 -0500 |
commit | b05b778a2dfbcb6978d652dfa27bd52cc649f736 (patch) | |
tree | 93eb16efaa0aa9209a47e48ee7cedea1753dc88a /Source/cmMSVC60LinkLineComputer.h | |
parent | d75fec5a88f81a8c16cdeab46766e92a14d1d3cf (diff) | |
download | cmake-b05b778a2dfbcb6978d652dfa27bd52cc649f736.tar.gz |
clang-tidy: Use `= delete`
Diffstat (limited to 'Source/cmMSVC60LinkLineComputer.h')
-rw-r--r-- | Source/cmMSVC60LinkLineComputer.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmMSVC60LinkLineComputer.h b/Source/cmMSVC60LinkLineComputer.h index 31223ecd4d..d767914b92 100644 --- a/Source/cmMSVC60LinkLineComputer.h +++ b/Source/cmMSVC60LinkLineComputer.h @@ -15,12 +15,14 @@ class cmStateDirectory; class cmMSVC60LinkLineComputer : public cmLinkLineComputer { - CM_DISABLE_COPY(cmMSVC60LinkLineComputer) - public: cmMSVC60LinkLineComputer(cmOutputConverter* outputConverter, cmStateDirectory const& stateDir); + cmMSVC60LinkLineComputer(cmMSVC60LinkLineComputer const&) = delete; + cmMSVC60LinkLineComputer& operator=(cmMSVC60LinkLineComputer const&) = + delete; + std::string ConvertToLinkReference(std::string const& input) const override; }; |