diff --git a/src/ast/expressions/if_then_else.cpp b/src/ast/expressions/if_then_else.cpp index 53de1e5..b597c3b 100644 --- a/src/ast/expressions/if_then_else.cpp +++ b/src/ast/expressions/if_then_else.cpp @@ -6,6 +6,7 @@ namespace ast { if_then_else::if_then_else(token::token token) : token(std::move(token)), + condition(nullptr), consequence(nullptr), alternative(nullptr) {};