File tree 1 file changed +2
-3
lines changed 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -133,8 +133,7 @@ struct GenericArgs
133
133
134
134
GenericArgs (std::vector<Lifetime> lifetime_args,
135
135
std::vector<std::unique_ptr<Type> > type_args,
136
- std::vector<GenericArgsBinding> binding_args,
137
- Location locus = Location ())
136
+ std::vector<GenericArgsBinding> binding_args, Location locus)
138
137
: lifetime_args (std::move (lifetime_args)),
139
138
type_args (std::move (type_args)),
140
139
binding_args (std::move (binding_args)), locus (locus)
@@ -471,7 +470,7 @@ class TypePathSegmentGeneric : public TypePathSegment
471
470
has_separating_scope_resolution, locus),
472
471
generic_args (GenericArgs (std::move (lifetime_args),
473
472
std::move (type_args),
474
- std::move (binding_args)))
473
+ std::move (binding_args), locus ))
475
474
{}
476
475
477
476
std::string as_string () const override ;
You can’t perform that action at this time.
0 commit comments