File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ class MultilibSet {
130
130
131
131
// / Select compatible variants, \returns false if none are compatible
132
132
bool select (const Multilib::flags_list &Flags,
133
- llvm::SmallVector <Multilib> &) const ;
133
+ llvm::SmallVectorImpl <Multilib> &) const ;
134
134
135
135
unsigned size () const { return Multilibs.size (); }
136
136
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ MultilibSet &MultilibSet::FilterOut(FilterCallback F) {
95
95
void MultilibSet::push_back (const Multilib &M) { Multilibs.push_back (M); }
96
96
97
97
bool MultilibSet::select (const Multilib::flags_list &Flags,
98
- llvm::SmallVector <Multilib> &Selected) const {
98
+ llvm::SmallVectorImpl <Multilib> &Selected) const {
99
99
llvm::StringSet<> FlagSet (expandFlags (Flags));
100
100
Selected.clear ();
101
101
You can’t perform that action at this time.
0 commit comments