diff options
author | Arthur Cohen <arthur.cohen@embecosm.com> | 2024-02-07 15:42:18 +0100 |
---|---|---|
committer | CohenArthur <arthur.cohen@embecosm.com> | 2024-02-08 10:16:46 +0000 |
commit | da5e5ee4677c4735104805d69c5f66d07d9cd23a (patch) | |
tree | 70bd4e7bdbfa0ce3307139ccc5734ef3abf03a9c /gcc | |
parent | 1e0e6a46abec24271ddea3f4936f2b94d7e2465e (diff) | |
download | gcc-da5e5ee4677c4735104805d69c5f66d07d9cd23a.zip gcc-da5e5ee4677c4735104805d69c5f66d07d9cd23a.tar.gz gcc-da5e5ee4677c4735104805d69c5f66d07d9cd23a.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).
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/rust/typecheck/rust-hir-type-check-implitem.h | 2 |
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 426aabe..eb2e8a9 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 |