indent 4 spaces

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@1064 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2009-11-22 10:55:24 +00:00
parent ed74d0efc4
commit 50877c9943

View file

@ -41,16 +41,16 @@ namespace Loki
struct ForEachTypeImpl<Typelist<Head, Tail>, Callable> struct ForEachTypeImpl<Typelist<Head, Tail>, Callable>
: public ForEachTypeImpl<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 #ifdef _MSC_VER
callable.operator()<value, Head>(); callable.operator()<value, Head>();
#else #else
callable.template operator()<value, Head>(); callable.template operator()<value, Head>();
#endif #endif
} }
}; };