aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Cohen <arthur.cohen@embecosm.com>2024-02-07 15:42:18 +0100
committerArthur Cohen <arthur.cohen@embecosm.com>2024-02-21 13:51:25 +0100
commit8534cc772def8142379c0e72ab6392d40f3f60f6 (patch)
tree4beef7a506f573c2f621a4fb752984e65bd9ab79
parentd0f8cb17bbd35e5eb25fc3b2119756b3e103e798 (diff)
downloadgcc-8534cc772def8142379c0e72ab6392d40f3f60f6.zip
gcc-8534cc772def8142379c0e72ab6392d40f3f60f6.tar.gz
gcc-8534cc772def8142379c0e72ab6392d40f3f60f6.tar.bz2
gccrs: Fix typo in RegionConstraints instance
gcc/rust/ChangeLog: * typecheck/rust-hir-type-check-implitem.h: Fix typo in field (region_costraints -> region_constraints).
-rw-r--r--gcc/rust/typecheck/rust-hir-type-check-implitem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/typecheck/rust-hir-type-check-implitem.h b/gcc/rust/typecheck/rust-hir-type-check-implitem.h
index 4d17844..541b728 100644
--- a/gcc/rust/typecheck/rust-hir-type-check-implitem.h
+++ b/gcc/rust/typecheck/rust-hir-type-check-implitem.h
@@ -97,7 +97,7 @@ private:
HIR::ImplBlock *parent;
TyTy::BaseType *self;
std::vector<TyTy::SubstitutionParamMapping> substitutions;
- TyTy::RegionConstraints region_costraints;
+ TyTy::RegionConstraints region_constraints;
};
} // namespace Resolver