Fix crash when moving around certain views

This commit is contained in:
WerWolv
2020-11-11 10:47:02 +01:00
parent 9b6b43356b
commit 9e62685fd1
9 changed files with 38 additions and 32 deletions

View File

@@ -17,7 +17,7 @@ namespace hex::lang {
};
explicit ASTNode(Type type) : m_type(type) {}
virtual ~ASTNode() {}
virtual ~ASTNode() = default;
Type getType() { return this->m_type; }