From b36fb3f6f1aed3c1313ff257945632d13704e1e6 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 22 Apr 2024 13:33:13 -0400 Subject: [PATCH] cmGeneratorExpressionNode: Remove outdated lint suppression Since commit 895efd4e7a (cmGeneratorExpression: Consolidate recognition of transitive properties, 2024-04-12) a lint suppression added by commit fb461cacba (silence selected clang-tidy violations, 2016-10-18, v3.8.0-rc1~428^2~1) is no longer needed. --- Source/cmGeneratorExpressionNode.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/cmGeneratorExpressionNode.cxx b/Source/cmGeneratorExpressionNode.cxx index 0df086b039..46a7d50fdd 100644 --- a/Source/cmGeneratorExpressionNode.cxx +++ b/Source/cmGeneratorExpressionNode.cxx @@ -2916,8 +2916,7 @@ static const struct TargetPropertyNode : public cmGeneratorExpressionNode return std::string(); } } else { - assert(dagCheckerParent - ->EvaluatingTransitiveProperty()); // NOLINT(clang-tidy) + assert(dagCheckerParent->EvaluatingTransitiveProperty()); } }