mirror of
https://github.com/reactos/CMake.git
synced 2025-02-22 21:11:43 +00:00
clang-tidy: Silence use-equals-default warning
clang-tidy 7 has an option to suppress this warning in macros which defaults to '1'. Set the option to '0' and silence the warning explicitly.
This commit is contained in:
parent
748d024551
commit
3f9822ff6d
@ -34,4 +34,6 @@ HeaderFilterRegex: 'Source/cm[^/]*\.(h|hxx|cxx)$'
|
||||
CheckOptions:
|
||||
- key: modernize-use-default-member-init.UseAssignment
|
||||
value: '1'
|
||||
- key: modernize-use-equals-default.IgnoreMacros
|
||||
value: '0'
|
||||
...
|
||||
|
@ -95,7 +95,7 @@ static const struct ZeroNode installInterfaceNode;
|
||||
#define BOOLEAN_OP_NODE(OPNAME, OP, SUCCESS_VALUE, FAILURE_VALUE) \
|
||||
static const struct OP##Node : public cmGeneratorExpressionNode \
|
||||
{ \
|
||||
OP##Node() {} \
|
||||
OP##Node() {} /* NOLINT(modernize-use-equals-default) */ \
|
||||
virtual int NumExpectedParameters() const { return OneOrMoreParameters; } \
|
||||
\
|
||||
std::string Evaluate(const std::vector<std::string>& parameters, \
|
||||
|
Loading…
x
Reference in New Issue
Block a user