------------------------------------------------------------------------------
| 1088 | |
| 1089 | //------------------------------------------------------------------------------ |
| 1090 | vtkMTimeType vtkDataSet::GetGhostCellsTime() |
| 1091 | { |
| 1092 | vtkMTimeType time = 0; |
| 1093 | if (auto ghostcells = this->GetCellGhostArray()) |
| 1094 | { |
| 1095 | time = ghostcells->GetMTime(); |
| 1096 | } |
| 1097 | |
| 1098 | return time; |
| 1099 | } |
| 1100 | |
| 1101 | VTK_ABI_NAMESPACE_END |
no test coverage detected