[Lldb-commits] [lldb] [lldb] Support MS style `struct`/`class` in C++ name parser (PR #196525)

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Wed Jun 3 00:36:37 PDT 2026


================
@@ -700,6 +700,20 @@ CPlusPlusNameParser::ParseFullNameImpl() {
         continue_parsing = false;
       }
       break;
+    case tok::kw_class:
+    case tok::kw_struct: // Microsoft: class Foo::Bar
----------------
Michael137 wrote:

Am I misremembering that MSVC had its own name parser?

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


More information about the lldb-commits mailing list