diff options
Diffstat (limited to 'src/ast/expr.cpp')
-rw-r--r-- | src/ast/expr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ast/expr.cpp b/src/ast/expr.cpp index 104c6094..0c40c741 100644 --- a/src/ast/expr.cpp +++ b/src/ast/expr.cpp @@ -237,7 +237,7 @@ NODE(ExprNode_Loop, { //os << "LOOP [" << m_label << "] " << m_pattern << " in/= " << m_cond << " " << m_code; }) -SERIALISE_TYPE_A(ExprNode_Match::Arm::, "ExprNode_Match_Arm", { +SERIALISE_TYPE_A(ExprNode_Match_Arm::, "ExprNode_Match_Arm", { s.item(m_patterns); s.item(m_cond); s.item(m_code); |