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