diff options
Diffstat (limited to 'gcc/rust/ast/rust-ast.cc')
-rw-r--r-- | gcc/rust/ast/rust-ast.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/rust/ast/rust-ast.cc b/gcc/rust/ast/rust-ast.cc index 4e24f1d..699232c 100644 --- a/gcc/rust/ast/rust-ast.cc +++ b/gcc/rust/ast/rust-ast.cc @@ -3643,7 +3643,7 @@ AttributeParser::parse_path_meta_item () case EQUAL: { skip_token (); - Location locus = peek_token ()->get_locus (); + location_t locus = peek_token ()->get_locus (); Literal lit = parse_literal (); if (lit.is_error ()) { @@ -3848,7 +3848,7 @@ AttributeParser::parse_simple_path_segment () std::unique_ptr<MetaItemLitExpr> AttributeParser::parse_meta_item_lit () { - Location locus = peek_token ()->get_locus (); + location_t locus = peek_token ()->get_locus (); LiteralExpr lit_expr (parse_literal (), {}, locus); return std::unique_ptr<MetaItemLitExpr> ( new MetaItemLitExpr (std::move (lit_expr))); |