Skip to content

Commit

Permalink
two bugs fixed 2
Browse files Browse the repository at this point in the history
  • Loading branch information
zippy84 committed Jan 22, 2024
1 parent 3d0d954 commit 0a650ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vtkPolyDataBooleanFilter.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,7 @@ bool vtkPolyDataBooleanFilter::CutCells (vtkPolyData *pd, PolyStripsType &polySt

strips.erase(std::remove_if(strips.begin(), strips.end(), fct), strips.end());

std::map<vtkIdType, std::reference_wrapper<StripType>> stripsM;
std::map<std::size_t, std::reference_wrapper<StripType>> stripsM;

for (auto &strip : strips) {
stripsM.emplace(strip.front().strip, strip);
Expand Down

0 comments on commit 0a650ff

Please sign in to comment.