------------------------------------------------------------------------------
| 1219 | |
| 1220 | //------------------------------------------------------------------------------ |
| 1221 | bool vtkCellArray::CanConvertToFixedSizeDefaultStorage() const |
| 1222 | { |
| 1223 | if (this->GetDefaultStorageIs64Bit()) |
| 1224 | { |
| 1225 | return this->CanConvertToFixedSize64BitStorage(); |
| 1226 | } |
| 1227 | else |
| 1228 | { |
| 1229 | return this->CanConvertToFixedSize32BitStorage(); |
| 1230 | } |
| 1231 | } |
| 1232 | |
| 1233 | //------------------------------------------------------------------------------ |
| 1234 | bool vtkCellArray::ConvertToDefaultStorage() |
nothing calls this directly
no test coverage detected