[gcc/devel/rust/master] gccrs: Add missing TypeBoundWhereClauseItem::get_locus
Thomas Schwinge
tschwinge@gcc.gnu.org
Tue May 2 07:11:39 GMT 2023
https://gcc.gnu.org/g:b5a7e8d10b379c487527204fd5e1b92d668aa906
commit b5a7e8d10b379c487527204fd5e1b92d668aa906
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 774f0245713..7726ee01673 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