diff options
Diffstat (limited to 'gcc/rust/ast/rust-expr.h')
-rw-r--r-- | gcc/rust/ast/rust-expr.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/rust/ast/rust-expr.h b/gcc/rust/ast/rust-expr.h index 9787e9a..f3ebf0b 100644 --- a/gcc/rust/ast/rust-expr.h +++ b/gcc/rust/ast/rust-expr.h @@ -5057,9 +5057,12 @@ struct TupleClobber struct TupleTemplateStr { // as gccrs still doesn't contain a symbol class I have put them as strings - std::string symbol; - std::string optional_symbol; location_t loc; + std::string symbol; + + TupleTemplateStr (location_t loc, const std::string &symbol) + : loc (loc), symbol (symbol) + {} }; // Inline Assembly Node |