
29 Apr
2013
29 Apr
'13
11:53 p.m.
On 4/29/2013 12:08 PM, oswin krause wrote:
Hi list,
I am necountering an error when trying to use boost::result_of on a pure virtual base class.
minimal example:
struct Test{ typedef int result_type; virtual int operator()(int)=0; }; typedef boost::result_of
::type type;
This is supposed to work:
typedef boost::result_of