Skip to content

Commit

Permalink
Fix compilation on newer gcc versions
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobHayes committed Oct 14, 2022
1 parent bafc7b9 commit 47a43d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ivar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ int main(int argc, char* argv[]){
for (int i = 0; i < nfiles; ++i) {
free(files[i]);
}
free(files);
delete[] files;
} else {
res = common_variants(g_args.prefix, g_args.min_threshold, argv + optind, argc - optind);
}
Expand Down

0 comments on commit 47a43d4

Please sign in to comment.