| 203 | } |
| 204 | |
| 205 | static bool ValidateCellId(vtkIdType cellId) noexcept |
| 206 | { |
| 207 | // is positive, won't truncate: |
| 208 | return ( |
| 209 | (static_cast<vtkTypeUInt64>(cellId) & CELLID_MASK) == static_cast<vtkTypeUInt64>(cellId)); |
| 210 | } |
| 211 | |
| 212 | void DeepCopy(CellMap* other) |
| 213 | { |
no outgoing calls
no test coverage detected