[clang] [Clang] Check for uninitialized use in lambda within CXXOperatorCallExpr (PR #129198)

Shafik Yaghmour via cfe-commits cfe-commits at lists.llvm.org
Fri Mar 7 16:51:14 PST 2025


================
@@ -12609,6 +12611,7 @@ namespace {
       isPODType = false;
       isRecordType = false;
       isReferenceType = false;
+      isInCXXOperatorCall = false;
----------------
shafik wrote:

It feels like changing this to use in class member initializers would have been a big win.

https://github.com/llvm/llvm-project/pull/129198


More information about the cfe-commits mailing list