[clang] [Clang] Fix 'counted_by' for nested struct pointers (PR #110497)

Bill Wendling via cfe-commits cfe-commits at lists.llvm.org
Wed Oct 2 16:59:17 PDT 2024


================
@@ -10,6 +10,7 @@
 //
 //===----------------------------------------------------------------------===//
 
+#include <iostream>
----------------
bwendling wrote:

Please don't include this (I know it's left from debugging). If you want to debug things, you can use:

```c++
llvm::errs() << "debug message\n";
```


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


More information about the cfe-commits mailing list