================
@@ -21,9 +21,10 @@ void DurationSubtractionCheck::registerMatchers(MatchFinder 
*Finder) {
   Finder->addMatcher(
       binaryOperator(
           hasOperatorName("-"),
-          hasLHS(callExpr(callee(functionDecl(DurationConversionFunction())
-                                     .bind("function_decl")),
-                          hasArgument(0, expr().bind("lhs_arg")))))
+          hasLHS(callExpr(
+              callee(functionDecl(DurationConversionFunction())
+                         .bind("function_decl")),
+              hasArgument(0, ignoringParenImpCasts(expr().bind("lhs_arg"))))))
----------------
5chmidti wrote:

This change is not needed, the check does not if implicit nodes are ignored or 
not, so we don't need to do the extra work.

https://github.com/llvm/llvm-project/pull/89553
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to