[Lldb-commits] [clang] [clang-tools-extra] [lldb] [clang][TypePrinter] Unify printing of anonymous/unnamed tag types (PR #169445)

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Fri Dec 5 17:00:48 PST 2025


================
@@ -121,6 +123,7 @@ struct PrintingPolicy {
   /// \endcode
   LLVM_PREFERRED_TYPE(bool)
   unsigned SuppressTagKeyword : 1;
+  unsigned SuppressTagKeywordInAnonymousTagNames : 1;
----------------
Michael137 wrote:

Made it an enum in one of the latest commits. Bit awkward with the casting, but nothing we can do about it if the bitfields are `unsigned` i guess

I'll extract it into a separate PR to make it easier to review

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


More information about the lldb-commits mailing list