Skip to content

Commit

Permalink
Merge pull request #165 from pieper/cxx17-build
Browse files Browse the repository at this point in the history
COMP: fixes for Slicer 5.8 (cxx 17)
  • Loading branch information
yrathi authored Feb 13, 2025
2 parents 2bbff42 + 2630e40 commit 3eca1ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion InteractiveUKF/Logic/vtkSlicerInteractiveUKFLogic.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ void vtkSlicerInteractiveUKFLogic::SetDataNodes(
return;
}

tract->SetData(nrrd, mask, seed, false /*normalizedDWIData*/);
tract->SetData(nrrd, mask, false /*normalizedDWIData*/, seed);
tract->UpdateFilterModelType();

vtkPolyData* pd = vtkPolyData::New();
Expand Down
2 changes: 1 addition & 1 deletion ukf/tractography.h
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ friend class vtkSlicerInteractiveUKFLogic;
* Directly set the data volume pointers
*/

bool SetData(void* data, void* mask, bool normalizedDWIData, void* seed, void* stop, void* wm, void* gm, void* csf);
bool SetData(void* data, void* mask, bool normalizedDWIData, void* seed, void* stop=nullptr, void* wm=nullptr, void* gm=nullptr, void* csf=nullptr);

/**
* Directly set the seed locations
Expand Down

0 comments on commit 3eca1ab

Please sign in to comment.