attempts to fix strange problems with Pathscale compilers

[SVN r41742]
This commit is contained in:
Tobias Schwinger
2007-12-05 13:20:13 +00:00
parent b60bbe281f
commit ed24c45406

View File

@ -133,8 +133,9 @@ namespace example
void apply(Function func, token_parser & parser, Args const & args)
{
typedef typename mpl::deref<From>::type arg_type;
typedef typename mpl::next<From>::type next_iter_type;
invoker<Function, typename mpl::next<From>::type, To>::apply
invoker<Function, next_iter_type, To>::apply
( func, parser, fusion::push_back(args, parser.get<arg_type>()) );
}
};