Skip to content

Commit

Permalink
mrmath: Fix compilation
Browse files Browse the repository at this point in the history
Resolves changes made to cmd/mrmath.cpp in #2784 to prevent memory leak against removal of MR::vector in #2689.
  • Loading branch information
Lestropie committed Feb 21, 2024
1 parent 72e03bb commit fed589b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/mrmath.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ template <class Operation> class ImageKernel : public ImageKernelBase {

protected:
Voxel2Vector v2v;
vector<Operation> data;
std::vector<Operation> data;
};

void run() {
Expand Down

0 comments on commit fed589b

Please sign in to comment.