Fixed python test regression and PP test failure.

[SVN r35404]
This commit is contained in:
Daniel Wallin
2006-09-29 00:30:42 +00:00
committed by Peter Dimov
parent e556ff29a9
commit 16dccc14ea
2 changed files with 15 additions and 3 deletions

View File

@@ -85,9 +85,9 @@ struct invoker<0, M, R, Args>
template <class M, class R, class T, class Args>
struct member_invoker<0, M, R, T, Args>
{
static R execute()
static R execute(T& self)
{
return M()(boost::type<R>());
return M()(boost::type<R>(), self);
}
};