[clang] [APINotes] Parse function-like Where.Parameters (PR #203227)
Gábor Horváth via cfe-commits
cfe-commits at lists.llvm.org
Thu Jun 11 06:24:38 PDT 2026
================
@@ -338,8 +338,15 @@ template <> struct MappingTraits<Class> {
} // namespace llvm
namespace {
+typedef std::vector<StringRef> WhereParamsSeq;
----------------
Xazax-hun wrote:
Nit: prefer `using` over `typedef`
```suggestion
using WhereParamsSeq = std::vector<StringRef>;
```
https://github.com/llvm/llvm-project/pull/203227
More information about the cfe-commits
mailing list