mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
clang-tidy: Use = delete
This commit is contained in:
committed by
Brad King
parent
d75fec5a88
commit
b05b778a2d
@@ -13,14 +13,17 @@ class cmake;
|
||||
|
||||
class cmCursesCacheEntryComposite
|
||||
{
|
||||
CM_DISABLE_COPY(cmCursesCacheEntryComposite)
|
||||
|
||||
public:
|
||||
cmCursesCacheEntryComposite(const std::string& key, int labelwidth,
|
||||
int entrywidth);
|
||||
cmCursesCacheEntryComposite(const std::string& key, cmake* cm, bool isNew,
|
||||
int labelwidth, int entrywidth);
|
||||
~cmCursesCacheEntryComposite();
|
||||
|
||||
cmCursesCacheEntryComposite(cmCursesCacheEntryComposite const&) = delete;
|
||||
cmCursesCacheEntryComposite& operator=(cmCursesCacheEntryComposite const&) =
|
||||
delete;
|
||||
|
||||
const char* GetValue();
|
||||
|
||||
friend class cmCursesMainForm;
|
||||
|
||||
Reference in New Issue
Block a user