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:
parent
ed74d0efc4
commit
50877c9943
1 changed files with 6 additions and 6 deletions
|
@ -41,16 +41,16 @@ namespace Loki
|
|||
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
|
||||
}
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue