Hello,
Below I implement a function "Chain" that takes two functions and
executes them both.
The first approach succeeds: direct function call.
The second approach succeeds: call via bind with explicit template arguments
The third and fourth approaches fail: call via bind without explicit
template arguments (with/without boost::protect)
Question: Why do I have to use explicit template arguments when using
bind with Chain?
Thank you,
Chris
===
#include