fix: Use delete[] operator

This commit is contained in:
Panquesito7 2020-06-23 17:52:04 -05:00
parent 957a05bd0c
commit cea644bdc3
No known key found for this signature in database
GPG Key ID: 3C482B03FD220E68

View File

@ -51,7 +51,7 @@ int main() {
}
} while (ch != 0);
delete stack;
delete[] stack;
return 0;
}