7
votes
demote boost::function to a plain function pointer
I think you want to use the target() member function of boost::function (isn't that a mouthful...)
#include <boost/function.hpp>
#include <iostream>
int f(int x)
{
re …
