diff options
Diffstat (limited to 'gcc/rust/ast/rust-ast-builder.h')
-rw-r--r-- | gcc/rust/ast/rust-ast-builder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/rust/ast/rust-ast-builder.h b/gcc/rust/ast/rust-ast-builder.h index 524b390..0ee36ff 100644 --- a/gcc/rust/ast/rust-ast-builder.h +++ b/gcc/rust/ast/rust-ast-builder.h @@ -31,7 +31,7 @@ namespace AST { class AstBuilder { public: - AstBuilder (Location loc) : loc (loc) {} + AstBuilder (location_t loc) : loc (loc) {} /* Create an identifier expression (`variable`) */ std::unique_ptr<Expr> identifier (std::string name); @@ -107,7 +107,7 @@ private: /** * Location of the generated AST nodes */ - Location loc; + location_t loc; }; } // namespace AST |