mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-20 23:08:34 -05:00
clang-tidy: Use = delete
This commit is contained in:
committed by
Brad King
parent
d75fec5a88
commit
b05b778a2d
@@ -20,11 +20,12 @@ class cmCursesMainForm;
|
||||
|
||||
class cmCursesStringWidget : public cmCursesWidget
|
||||
{
|
||||
CM_DISABLE_COPY(cmCursesStringWidget)
|
||||
|
||||
public:
|
||||
cmCursesStringWidget(int width, int height, int left, int top);
|
||||
|
||||
cmCursesStringWidget(cmCursesStringWidget const&) = delete;
|
||||
cmCursesStringWidget& operator=(cmCursesStringWidget const&) = delete;
|
||||
|
||||
/**
|
||||
* Handle user input. Called by the container of this widget
|
||||
* when this widget has focus. Returns true if the input was
|
||||
|
||||
Reference in New Issue
Block a user