Skip to content

Commit

Permalink
Merge pull request #1 from thewtex/point-component-type-default
Browse files Browse the repository at this point in the history
COMP: Add switch default for point component type
  • Loading branch information
thewtex authored Dec 4, 2024
2 parents d17f463 + 9bc74b5 commit f9cf8b3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/itkMZ3MeshIO.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,10 @@ MZ3MeshIO::WritePoints(void * buffer)
WritePoints(static_cast<long double *>(buffer));
break;
}
default:
{
itkExceptionMacro("Unsupported point component type");
}
}
}

Expand Down

0 comments on commit f9cf8b3

Please sign in to comment.