On Aug 10, 2005, at 11:44 AM, Simmons, Aaron wrote:
function
funcFoo = bind(&test::foo, this); function funcBar = bind(&test::bar, this); function funcTest1= bind(logical_and<bool>(), funcFoo, funcBar);
Alan's post made me realize what's happening. Indeed, this last bind()
doesn't know that funcFoo and funcBar are functions that it should
call. You can tell it to consider them as functions by calling bind()
on them:
function