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
@@ -16,13 +16,14 @@ class cmOutputConverter;
|
||||
|
||||
class cmLinkLineComputer
|
||||
{
|
||||
CM_DISABLE_COPY(cmLinkLineComputer)
|
||||
|
||||
public:
|
||||
cmLinkLineComputer(cmOutputConverter* outputConverter,
|
||||
cmStateDirectory const& stateDir);
|
||||
virtual ~cmLinkLineComputer();
|
||||
|
||||
cmLinkLineComputer(cmLinkLineComputer const&) = delete;
|
||||
cmLinkLineComputer& operator=(cmLinkLineComputer const&) = delete;
|
||||
|
||||
void SetUseWatcomQuote(bool useWatcomQuote);
|
||||
void SetForResponse(bool forResponse);
|
||||
void SetRelink(bool relink);
|
||||
|
||||
Reference in New Issue
Block a user