diff options
Diffstat (limited to 'gcc/rust/ast/rust-macro.h')
-rw-r--r-- | gcc/rust/ast/rust-macro.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/gcc/rust/ast/rust-macro.h b/gcc/rust/ast/rust-macro.h index 5270d11..1bf8912 100644 --- a/gcc/rust/ast/rust-macro.h +++ b/gcc/rust/ast/rust-macro.h @@ -829,11 +829,14 @@ protected: class MetaListPaths : public MetaItem { Identifier ident; + Location ident_locus; std::vector<SimplePath> paths; public: - MetaListPaths (Identifier ident, std::vector<SimplePath> paths) - : ident (std::move (ident)), paths (std::move (paths)) + MetaListPaths (Identifier ident, Location ident_locus, + std::vector<SimplePath> paths) + : ident (std::move (ident)), ident_locus (ident_locus), + paths (std::move (paths)) {} std::string as_string () const override; @@ -860,13 +863,14 @@ protected: class MetaListNameValueStr : public MetaItem { Identifier ident; + Location ident_locus; std::vector<MetaNameValueStr> strs; - // FIXME add location info - public: - MetaListNameValueStr (Identifier ident, std::vector<MetaNameValueStr> strs) - : ident (std::move (ident)), strs (std::move (strs)) + MetaListNameValueStr (Identifier ident, Location ident_locus, + std::vector<MetaNameValueStr> strs) + : ident (std::move (ident)), ident_locus (ident_locus), + strs (std::move (strs)) {} std::string as_string () const override; |