From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7905) id C60013858D20; Wed, 21 Feb 2024 12:51:31 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C60013858D20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1708519891; bh=LzygyIiNrUPRd2hCZ+pXe75tU3hfUACao7Shzm/LqrA=; h=From:To:Subject:Date:From; b=Tt7ihThSdstnDVGw9S3jyJ8RPswSUyJX5rwFjoT/1e7i6bGKETh6gOYPQGjMigcCK BOPHzZDujj+5/f6Qxd7TnVH+i+ekfRo1oDTDkqSaXnuLpNVcbCG/RqkuPuGKI7634c Lz+r1oZ2rfNJU1kEeddLgrqBol3ILmfX04nIcFIA= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Arthur Cohen To: gcc-cvs@gcc.gnu.org Subject: [gcc r14-9106] gccrs: Fix typo in RegionConstraints instance X-Act-Checkin: gcc X-Git-Author: Arthur Cohen X-Git-Refname: refs/heads/trunk X-Git-Oldrev: d0f8cb17bbd35e5eb25fc3b2119756b3e103e798 X-Git-Newrev: 8534cc772def8142379c0e72ab6392d40f3f60f6 Message-Id: <20240221125131.C60013858D20@sourceware.org> Date: Wed, 21 Feb 2024 12:51:31 +0000 (GMT) List-Id: https://gcc.gnu.org/g:8534cc772def8142379c0e72ab6392d40f3f60f6 commit r14-9106-g8534cc772def8142379c0e72ab6392d40f3f60f6 Author: Arthur Cohen Date: Wed Feb 7 15:42:18 2024 +0100 gccrs: Fix typo in RegionConstraints instance gcc/rust/ChangeLog: * typecheck/rust-hir-type-check-implitem.h: Fix typo in field (region_costraints -> region_constraints). Diff: --- gcc/rust/typecheck/rust-hir-type-check-implitem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/rust/typecheck/rust-hir-type-check-implitem.h b/gcc/rust/typecheck/rust-hir-type-check-implitem.h index 4d1784407757..541b7280c1b8 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 substitutions; - TyTy::RegionConstraints region_costraints; + TyTy::RegionConstraints region_constraints; }; } // namespace Resolver