================
@@ -305,6 +320,38 @@ void UseEmplaceCheck::registerMatchers(MatchFinder 
*Finder) {
       this);
 }
 
+const Expr *unwrapInnerExpression(const Expr *E) {
+
+  while (true) {
----------------
vbvictor wrote:

you could write `while(E)` and get rid of if
```cpp
if (!E)
  break;
```

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

Reply via email to