From 23c3cd3020d71fd0993036dac4013b0f8b06bddd Mon Sep 17 00:00:00 2001 From: Kenneth Moreland Date: Thu, 7 Jan 2016 15:26:29 -0700 Subject: [PATCH] Add PointCount to WorkletMapPointToCell. WorkletMapPointToCell is a convenience subclass of WorkletMapTopology. As such, it renames all the From/To signature tags to say Point/Cell to be easier to read. However, the alias for FromCount was missing. Add the alias PointCount. --- vtkm/worklet/WorkletMapTopology.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vtkm/worklet/WorkletMapTopology.h b/vtkm/worklet/WorkletMapTopology.h index 1415ac3da..f5fde5673 100644 --- a/vtkm/worklet/WorkletMapTopology.h +++ b/vtkm/worklet/WorkletMapTopology.h @@ -189,6 +189,8 @@ public: template struct FieldInOutCell : FieldInOut { }; + struct PointCount : FromCount { }; + struct PointIndices : FromIndices { }; };