------------------------------------------------------------------------------
| 1232 | |
| 1233 | //------------------------------------------------------------------------------ |
| 1234 | bool vtkCellArray::ConvertToDefaultStorage() |
| 1235 | { |
| 1236 | if (this->GetDefaultStorageIs64Bit()) |
| 1237 | { |
| 1238 | return this->ConvertTo64BitStorage(); |
| 1239 | } |
| 1240 | else |
| 1241 | { |
| 1242 | return this->ConvertTo32BitStorage(); |
| 1243 | } |
| 1244 | } |
| 1245 | |
| 1246 | //------------------------------------------------------------------------------ |
| 1247 | bool vtkCellArray::ConvertToFixedSize32BitStorage() |
nothing calls this directly
no test coverage detected