Forgot to add export macro to CellShapeTagGeneric

That caused an error when used in CUDA.
This commit is contained in:
Kenneth Moreland 2015-08-27 17:34:28 -06:00
parent 947178e7e4
commit 47818553cb

@ -138,6 +138,7 @@ VTKM_DEFINE_CELL_TAG(Pyramid, CELL_SHAPE_PYRAMID);
/// \c vtkmGenericCellShapeMacro to specialize on the cell type.
///
struct CellShapeTagGeneric {
VTKM_EXEC_CONT_EXPORT
CellShapeTagGeneric(vtkm::IdComponent shape) : Id(shape) { }
const vtkm::IdComponent Id;