[clang-tools-extra] [clang-doc] Serialize record files with mangled name (PR #148021)
Paul Kirth via cfe-commits
cfe-commits at lists.llvm.org
Thu Jul 10 12:46:03 PDT 2025
================
@@ -378,6 +378,7 @@ struct SymbolInfo : public Info {
std::optional<Location> DefLoc; // Location where this decl is defined.
llvm::SmallVector<Location, 2> Loc; // Locations where this decl is declared.
bool IsStatic = false;
+ SmallString<16> MangledName;
----------------
ilovepi wrote:
```suggestion
llvm::SmallVector<Location, 2> Loc; // Locations where this decl is declared.
SmallString<16> MangledName;
bool IsStatic = false;
```
https://github.com/llvm/llvm-project/pull/148021
More information about the cfe-commits
mailing list