Fix build error

This commit is contained in:
Deukhoofd 2019-05-22 12:37:49 +02:00
parent 9cc5c14b43
commit 1cf33d5ae8
No known key found for this signature in database
GPG Key ID: B4C087AC81641654
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ void Script::Parse(string script) {
} }
lexResult.clear(); lexResult.clear();
if (!Diagnostics->HasErrors()){ if (!Diagnostics->HasErrors()){
this->BoundScript = Binder::Bind(parseResult); this->BoundScript = Binder::Bind(this, parseResult);
} }
delete parseResult; delete parseResult;
} }