diff options
Diffstat (limited to 'gcc/rust/backend/rust-compile-context.h')
-rw-r--r-- | gcc/rust/backend/rust-compile-context.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gcc/rust/backend/rust-compile-context.h b/gcc/rust/backend/rust-compile-context.h index 8007c2f..66d037d 100644 --- a/gcc/rust/backend/rust-compile-context.h +++ b/gcc/rust/backend/rust-compile-context.h @@ -287,7 +287,7 @@ public: // this needs to support Legacy and V0 see github #429 or #305 std::string mangle_item (const TyTy::BaseType *ty, - const std::string &name) const; + const Resolver::CanonicalPath &path) const; std::string mangle_impl_item (const TyTy::BaseType *self, const TyTy::BaseType *ty, @@ -336,7 +336,12 @@ public: void visit (TyTy::InferType &) override { gcc_unreachable (); } - void visit (TyTy::PlaceholderType &) override { gcc_unreachable (); } + void visit (TyTy::ProjectionType &) override { gcc_unreachable (); } + + void visit (TyTy::PlaceholderType &type) override + { + type.resolve ()->accept_vis (*this); + } void visit (TyTy::ParamType ¶m) override { |