[PATCH] D75800: [ASTMatchers] adds isComparisonOperator to BinaryOperator and CXXOperatorCallExpr
Nathan James via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sat Mar 7 02:42:55 PST 2020
njames93 marked an inline comment as done.
njames93 added inline comments.
================
Comment at: clang-tools-extra/clang-tidy/misc/RedundantExpressionCheck.cpp:570
const auto RelationalExpr = ignoringParenImpCasts(binaryOperator(
- isComparisonOperator(), expr().bind(Id),
+ matchers::isComparisonOperator(), expr().bind(Id),
anyOf(allOf(hasLHS(matchSymbolicExpr(Id)),
----------------
This will be reverted in a follow up, but it was breaking the build, same goes below
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75800/new/
https://reviews.llvm.org/D75800
More information about the cfe-commits
mailing list