Adding another typename

This commit is contained in:
Matt Larsen 2016-03-03 16:04:04 -05:00
parent 23e801da55
commit 1448d0d3b4

@ -316,7 +316,7 @@ public:
VTKM_EXEC_EXPORT
T Add(vtkm::Id index, const T& value) const
{
IteratorType::pointer temp = &(*(Iterators.GetBegin()+index));
typename IteratorType::pointer temp = &(*(Iterators.GetBegin()+index));
T* lockedValue = temp;
return vtkmAtomicAdd(lockedValue, value);
}