From: <syn...@us...> - 2009-11-22 10:55:31
|
Revision: 1064 http://loki-lib.svn.sourceforge.net/loki-lib/?rev=1064&view=rev Author: syntheticpp Date: 2009-11-22 10:55:24 +0000 (Sun, 22 Nov 2009) Log Message: ----------- indent 4 spaces Modified Paths: -------------- trunk/include/loki/ForEachType.h Modified: trunk/include/loki/ForEachType.h =================================================================== --- trunk/include/loki/ForEachType.h 2009-11-21 10:54:19 UTC (rev 1063) +++ trunk/include/loki/ForEachType.h 2009-11-22 10:55:24 UTC (rev 1064) @@ -41,16 +41,16 @@ struct ForEachTypeImpl<Typelist<Head, Tail>, Callable> : public ForEachTypeImpl<Tail, Callable> { - enum { value = 1 + ForEachTypeImpl<Tail, Callable>::value }; + enum { value = 1 + ForEachTypeImpl<Tail, Callable>::value }; - ForEachTypeImpl( Callable& callable ) : ForEachTypeImpl<Tail, Callable>(callable) - { + ForEachTypeImpl( Callable& callable ) : ForEachTypeImpl<Tail, Callable>(callable) + { #ifdef _MSC_VER - callable.operator()<value, Head>(); + callable.operator()<value, Head>(); #else - callable.template operator()<value, Head>(); + callable.template operator()<value, Head>(); #endif - } + } }; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |