Skip to content

Commit

Permalink
Fixed harless mismatached delete/delete[]
Browse files Browse the repository at this point in the history
  • Loading branch information
cschreib committed Mar 10, 2024
1 parent 335acd8 commit 43f4627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fast++-fitter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ struct fitter_workspace {
fitter_workspace& operator=(fitter_workspace&&) = delete;

~fitter_workspace() {
delete pool;
delete[] pool;
}
};

Expand Down

0 comments on commit 43f4627

Please sign in to comment.