fix delete / delete[] mismatch

This commit is contained in:
Axel Kohlmeyer 2023-10-04 08:37:53 -04:00
parent ed9bfb433f
commit d567fdae97
No known key found for this signature in database
GPG Key ID: D9B44E93BF0C375A
1 changed files with 1 additions and 1 deletions

View File

@ -1183,7 +1183,7 @@ void LammpsGui::start_lammps()
// delete additional arguments again (3 were there initially
while (lammps_args.size() > initial_narg) {
delete lammps_args.back();
delete[] lammps_args.back();
lammps_args.pop_back();
}