------------------------------------------------------------------------------
| 1289 | |
| 1290 | //------------------------------------------------------------------------------ |
| 1291 | bool vtkCellArray::ConvertToFixedSizeDefaultStorage() |
| 1292 | { |
| 1293 | if (this->GetDefaultStorageIs64Bit()) |
| 1294 | { |
| 1295 | return this->ConvertToFixedSize64BitStorage(); |
| 1296 | } |
| 1297 | else |
| 1298 | { |
| 1299 | return this->ConvertToFixedSize32BitStorage(); |
| 1300 | } |
| 1301 | } |
| 1302 | |
| 1303 | //------------------------------------------------------------------------------ |
| 1304 | bool vtkCellArray::ConvertToSmallestStorage() |
nothing calls this directly
no test coverage detected