8 Jun
2004
8 Jun
'04
8:02 a.m.
Russell Hind wrote:
I've had a response from the Microsoft groups. The problem is described here
http://support.microsoft.com/default.aspx?kbid=823071
I'll post back if I get it working.
This has worked. I've modified function_base.hpp to be #if defined(_MANAGED) inline int has_empty_target(const function_base* f) { return f->empty(); } inline int has_empty_target(...) { return 0; } #else inline bool has_empty_target(const function_base* f) { return f->empty(); } inline bool has_empty_target(...) { return false; } #endif Not sure if this is the best solution, but it works for now Thanks Russell