mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-08 07:10:12 -05:00
clang-tidy: Use = delete
This commit is contained in:
committed by
Brad King
parent
d75fec5a88
commit
b05b778a2d
@@ -11,12 +11,13 @@
|
||||
|
||||
class cmCursesForm
|
||||
{
|
||||
CM_DISABLE_COPY(cmCursesForm)
|
||||
|
||||
public:
|
||||
cmCursesForm();
|
||||
virtual ~cmCursesForm();
|
||||
|
||||
cmCursesForm(cmCursesForm const&) = delete;
|
||||
cmCursesForm& operator=(cmCursesForm const&) = delete;
|
||||
|
||||
// Description:
|
||||
// Handle user input.
|
||||
virtual void HandleInput() = 0;
|
||||
|
||||
Reference in New Issue
Block a user