Make DynamicCellSet use VTKM_DEFAULT_CELL_SET_LIST_TAG.

It was previously using vtkm::cont::CellSetListTagCommon which would
break the ability for people to specify a custom value for
VTKM_DEFAULT_CELL_SET_LIST_TAG.
This commit is contained in:
Robert Maynard 2016-01-13 11:05:58 -05:00
parent 665b34894e
commit 4e94617f89

@ -285,7 +285,7 @@ void DynamicCellSetBase<CellSetList>::CastAndCall(const Functor &f) const
detail::CastAndCallCellSet(f, *this);
}
typedef DynamicCellSetBase<vtkm::cont::CellSetListTagCommon> DynamicCellSet;
typedef DynamicCellSetBase< VTKM_DEFAULT_CELL_SET_LIST_TAG > DynamicCellSet;
namespace internal {