Skip to content
Snippets Groups Projects
Commit 478ed0f3 authored by Ben Boeckel's avatar Ben Boeckel
Browse files

vtkImprintFilter: use `int8_t` for `{Cell,Point}Classification`

`char` on aarch64 is `unsigned` and the negative variants for
`PointClassification` end up leaking out when compared with literals
where promotion occurs (as `int`). While `CellClassification` lacks
negative variants, using its enum name helps to keep usage consistent.

Assign the `int8_t` storage size for these `enum` types and store its
type explicitly where used.
parent 492a5cd5
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment