Correct some missing VTKM_CONT_EXPORT macros.

This commit is contained in:
Robert Maynard 2015-06-12 09:33:55 -04:00
parent d26cfcf5cc
commit cb4e509be7

@ -95,9 +95,12 @@ class IteratorFromArrayPortal : public
vtkm::Id>
{
public:
VTKM_CONT_EXPORT
IteratorFromArrayPortal()
: Portal(), Index(0) { }
VTKM_CONT_EXPORT
explicit IteratorFromArrayPortal(const ArrayPortalType &portal,
vtkm::Id index = 0)
: Portal(portal), Index(index) { }