mirror of
https://github.com/boostorg/parameter_python.git
synced 2026-01-24 06:02:12 +00:00
Fixed python test regression and PP test failure.
[SVN r35404]
This commit is contained in:
committed by
Peter Dimov
parent
e556ff29a9
commit
16dccc14ea
@@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user