From 13c19ecf9a5a738c53e0981ea1e7139b92cc9586 Mon Sep 17 00:00:00 2001 From: Kenneth Moreland Date: Mon, 15 Aug 2016 15:59:36 -0600 Subject: [PATCH] Remove unnecessary typename There was an instance where the typename keyword was used to declare that an item in a templated class is a type in a place where the full type is known. Some compilers (e.g. Visual Studio) do not allow using typename in this case. --- vtkm/worklet/FieldHistogram.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vtkm/worklet/FieldHistogram.h b/vtkm/worklet/FieldHistogram.h index cba794705..8a71fbc52 100644 --- a/vtkm/worklet/FieldHistogram.h +++ b/vtkm/worklet/FieldHistogram.h @@ -127,7 +127,7 @@ public: typedef void ExecutionSignature(_1,_2); typedef _1 InputDomain; - typedef typename vtkm::cont::ArrayHandle::ExecutionTypes::PortalConst IdPortalType; + typedef vtkm::cont::ArrayHandle::ExecutionTypes::PortalConst IdPortalType; IdPortalType totalCountArray; VTKM_CONT_EXPORT