Boost logo

Boost Users :

From: Russell Hind (rhind_at_[hidden])
Date: 2004-06-08 03:02:04


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


Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net