mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-04 05:10:10 -05:00
clang-tidy: Use = delete
This commit is contained in:
committed by
Brad King
parent
d75fec5a88
commit
b05b778a2d
@@ -23,12 +23,13 @@ class cmake;
|
||||
*/
|
||||
class cmCursesMainForm : public cmCursesForm
|
||||
{
|
||||
CM_DISABLE_COPY(cmCursesMainForm)
|
||||
|
||||
public:
|
||||
cmCursesMainForm(std::vector<std::string> args, int initwidth);
|
||||
~cmCursesMainForm() override;
|
||||
|
||||
cmCursesMainForm(cmCursesMainForm const&) = delete;
|
||||
cmCursesMainForm& operator=(cmCursesMainForm const&) = delete;
|
||||
|
||||
/**
|
||||
* Set the widgets which represent the cache entries.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user