mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 22:50:26 -06:00
clang-tidy: Use = delete
This commit is contained in:
committed by
Brad King
parent
d75fec5a88
commit
b05b778a2d
@@ -12,11 +12,12 @@ class cmCursesMainForm;
|
||||
|
||||
class cmCursesBoolWidget : public cmCursesWidget
|
||||
{
|
||||
CM_DISABLE_COPY(cmCursesBoolWidget)
|
||||
|
||||
public:
|
||||
cmCursesBoolWidget(int width, int height, int left, int top);
|
||||
|
||||
cmCursesBoolWidget(cmCursesBoolWidget const&) = delete;
|
||||
cmCursesBoolWidget& operator=(cmCursesBoolWidget const&) = delete;
|
||||
|
||||
// Description:
|
||||
// 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