Use correct deallocator

This commit is contained in:
Carsten Larsen 2017-01-08 13:13:39 +01:00
parent 4ea2b3af84
commit 65f9d88562
1 changed files with 1 additions and 1 deletions

View File

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