================
@@ -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 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
