$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] Boost.Coroutine + objects
From: Van Pers (vanpersvan_at_[hidden])
Date: 2013-10-03 18:15:46
Nathan Ridge wrote:
> You need to refer to member functions as '&Abc::first' rather than
> just 'first', and you need to bind the implicit object parameter
> to something (likekely 'this'):
> bind(&Abc::first, this, _1)
> Regards,
> Nate
Thank you Nathan,
this works for me.
Regards,
Van