diff options
Diffstat (limited to 'gcc/rust/hir/rust-ast-lower-base.h')
-rw-r--r-- | gcc/rust/hir/rust-ast-lower-base.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/rust/hir/rust-ast-lower-base.h b/gcc/rust/hir/rust-ast-lower-base.h index 0041a8f..7e3eee1 100644 --- a/gcc/rust/hir/rust-ast-lower-base.h +++ b/gcc/rust/hir/rust-ast-lower-base.h @@ -282,6 +282,9 @@ protected: std::unique_ptr<TuplePatternItems> lower_tuple_pattern_ranged (AST::TuplePatternItemsRanged &pattern); + std::unique_ptr<HIR::RangePatternBound> + lower_range_pattern_bound (AST::RangePatternBound *bound); + HIR::Literal lower_literal (const AST::Literal &literal); }; |