Move template <...> decl before VTKM_EXEC_CONT.

This isn't necessarily a problem, but for consistency's sake I want to
move it to match the rest of the code.
This commit is contained in:
Allison Vacanti 2019-09-13 10:22:30 -04:00
parent 60e6ef4bee
commit d872e1061f

@ -79,10 +79,9 @@ public:
VTKM_EXEC_CONT
ValueType Get(vtkm::Id index) const { return this->Functor(index); }
VTKM_EXEC_CONT
template <typename ReadOnly_ = ReadOnly,
typename = typename std::enable_if<!ReadOnly_::value>::type>
void Set(vtkm::Id index, const ValueType& value) const
VTKM_EXEC_CONT void Set(vtkm::Id index, const ValueType& value) const
{
this->InverseFunctor(index, value);
}