[llvm-branch-commits] [clang-tools-extra] [clang-doc] Update serializer for improved template handling (PR #138065)
Petr Hosek via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue May 6 18:48:43 PDT 2025
================
@@ -362,6 +362,9 @@ struct FunctionInfo : public SymbolInfo {
// specializations.
SmallString<16> FullName;
+ // Function Prototype
+ SmallString<256> ProtoType;
----------------
petrhosek wrote:
This capitalization might imply that this is a type of proto(type), we also use "prototype" elsewhere.
```suggestion
SmallString<256> Prototype;
```
https://github.com/llvm/llvm-project/pull/138065
More information about the llvm-branch-commits
mailing list