From 4e94617f89f08ccadda16c4d6a1297a60743edd7 Mon Sep 17 00:00:00 2001 From: Robert Maynard Date: Wed, 13 Jan 2016 11:05:58 -0500 Subject: [PATCH] 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. --- vtkm/cont/DynamicCellSet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vtkm/cont/DynamicCellSet.h b/vtkm/cont/DynamicCellSet.h index 40ead8e36..8f614de40 100644 --- a/vtkm/cont/DynamicCellSet.h +++ b/vtkm/cont/DynamicCellSet.h @@ -285,7 +285,7 @@ void DynamicCellSetBase::CastAndCall(const Functor &f) const detail::CastAndCallCellSet(f, *this); } -typedef DynamicCellSetBase DynamicCellSet; +typedef DynamicCellSetBase< VTKM_DEFAULT_CELL_SET_LIST_TAG > DynamicCellSet; namespace internal {