[gcc r14-7532] gccrs: Add missing TypeBoundWhereClauseItem::get_locus

Arthur Cohen cohenarthur@gcc.gnu.org
Tue Jan 16 17:42:05 GMT 2024


https://gcc.gnu.org/g:bee0c8a1d4263754feb2271f50bbb7a5819ae4ff

commit r14-7532-gbee0c8a1d4263754feb2271f50bbb7a5819ae4ff
Author: Philip Herron <herron.philip@googlemail.com>
Date:   Thu Apr 20 09:59:47 2023 +0100

    gccrs: Add missing TypeBoundWhereClauseItem::get_locus
    
    gcc/rust/ChangeLog:
    
            * hir/tree/rust-hir-item.h: add get_locus() const
    
    Signed-off-by: Philip Herron <herron.philip@googlemail.com>

Diff:
---
 gcc/rust/hir/tree/rust-hir-item.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gcc/rust/hir/tree/rust-hir-item.h b/gcc/rust/hir/tree/rust-hir-item.h
index 2145f98fd15..adb5ef6cedd 100644
--- a/gcc/rust/hir/tree/rust-hir-item.h
+++ b/gcc/rust/hir/tree/rust-hir-item.h
@@ -273,6 +273,8 @@ public:
   TypeBoundWhereClauseItem &operator= (TypeBoundWhereClauseItem &&other)
     = default;
 
+  Location get_locus () const { return locus; }
+
   std::string as_string () const override;
 
   void accept_vis (HIRFullVisitor &vis) override;


More information about the Gcc-cvs mailing list