diff options
Diffstat (limited to 'src/hir/expr.hpp')
-rw-r--r-- | src/hir/expr.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hir/expr.hpp b/src/hir/expr.hpp index 88e34671..724126c9 100644 --- a/src/hir/expr.hpp +++ b/src/hir/expr.hpp @@ -307,6 +307,7 @@ struct ExprNode_TupleVariant: ExprNode_TupleVariant(Span sp, ::HIR::GenericPath path, bool is_struct, ::std::vector< ::HIR::ExprNodeP> args): ExprNode(mv$(sp)), m_path( mv$(path) ), + m_is_struct( is_struct ), m_args( mv$(args) ) {} |