Add missing return statement to ArrayHandleGroupVec

This commit is contained in:
Robert Maynard 2016-02-26 14:26:22 -05:00
parent f53c8af170
commit 230e651d1b

@ -104,7 +104,7 @@ public:
VTKM_SUPPRESS_EXEC_WARNINGS
VTKM_EXEC_CONT_EXPORT
const SourcePortalType &GetPortal() const { this->SourcePortal; }
const SourcePortalType &GetPortal() const { return this->SourcePortal; }
private:
SourcePortalType SourcePortal;