diff --git a/vtkm/cont/CellLocatorUniformGrid.h b/vtkm/cont/CellLocatorUniformGrid.h index 313c95a65..42a89c00a 100644 --- a/vtkm/cont/CellLocatorUniformGrid.h +++ b/vtkm/cont/CellLocatorUniformGrid.h @@ -36,6 +36,9 @@ namespace cont class CellLocatorUniformGrid : public vtkm::cont::CellLocator { public: + VTKM_CONT + CellLocatorUniformGrid() = default; + VTKM_CONT void Build() override { @@ -58,9 +61,6 @@ public: RangeTransform[2] = static_cast(celldims[2]) / static_cast(Bounds.Z.Length()); - // Since we are calculating the cell Id, and the number of cells is - // 1 less than the number of points in each direction, the -1 from dims - // is necessary. PlaneSize = celldims[0] * celldims[1]; RowSize = celldims[0]; }