diff --git a/include/loki/ForEachType.h b/include/loki/ForEachType.h index 4213e4b..51df1b8 100644 --- a/include/loki/ForEachType.h +++ b/include/loki/ForEachType.h @@ -41,16 +41,16 @@ namespace Loki struct ForEachTypeImpl, Callable> : public ForEachTypeImpl { - enum { value = 1 + ForEachTypeImpl::value }; + enum { value = 1 + ForEachTypeImpl::value }; - ForEachTypeImpl( Callable& callable ) : ForEachTypeImpl(callable) - { + ForEachTypeImpl( Callable& callable ) : ForEachTypeImpl(callable) + { #ifdef _MSC_VER - callable.operator()(); + callable.operator()(); #else - callable.template operator()(); + callable.template operator()(); #endif - } + } };