Use correct deallocator

This commit is contained in:
Carsten Larsen 2017-01-08 13:13:39 +01:00
parent 0f771ca328
commit 238871bd73
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ Lexer::~Lexer()
delete [] input;
if (first != NOMEM) {
delete [] first;
delete first;
}
}