Merge topic 'fix-shadow'

396f70ed remove shadow methods (fixes #210)

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Kenneth Moreland <kmorel@sandia.gov>
Merge-request: !1123
This commit is contained in:
Utkarsh Ayachit 2018-03-29 15:05:23 +00:00 committed by Kitware Robot
commit 90b91f7a3d
2 changed files with 0 additions and 8 deletions

@ -44,15 +44,8 @@ public:
VTKM_CONT
vtkm::Id GetActiveCellSetIndex() const { return this->CellSetIndex; }
VTKM_CONT
void SetActiveCoordinateSystem(vtkm::Id index) { this->CoordinateSystemIndex = index; }
VTKM_CONT
vtkm::Id GetActiveCoordinateSystemIndex() const { return this->CoordinateSystemIndex; }
protected:
vtkm::Id CellSetIndex;
vtkm::Id CoordinateSystemIndex;
};
}
} // namespace vtkm::filter

@ -28,7 +28,6 @@ template <class Derived>
inline VTKM_CONT FilterCell<Derived>::FilterCell()
: vtkm::filter::FilterField<Derived>()
, CellSetIndex(0)
, CoordinateSystemIndex(0)
{
}