mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 14:20:06 -06:00
clang-tidy: Use = delete
This commit is contained in:
committed by
Brad King
parent
d75fec5a88
commit
b05b778a2d
@@ -12,8 +12,6 @@ class cmMakefile;
|
||||
|
||||
class cmCommandArgumentParserHelper
|
||||
{
|
||||
CM_DISABLE_COPY(cmCommandArgumentParserHelper)
|
||||
|
||||
public:
|
||||
struct ParserType
|
||||
{
|
||||
@@ -23,6 +21,10 @@ public:
|
||||
cmCommandArgumentParserHelper();
|
||||
~cmCommandArgumentParserHelper();
|
||||
|
||||
cmCommandArgumentParserHelper(cmCommandArgumentParserHelper const&) = delete;
|
||||
cmCommandArgumentParserHelper& operator=(
|
||||
cmCommandArgumentParserHelper const&) = delete;
|
||||
|
||||
int ParseString(const char* str, int verb);
|
||||
|
||||
// For the lexer:
|
||||
|
||||
Reference in New Issue
Block a user