I have found this in bind.hpp:
#ifndef BOOST_BIND
#define BOOST_BIND bind
#endif
it causes minor problems with my codebase by confusing it with the windows sockets api. Maybe it should be changed to something like
#ifndef BOOST_BIND
#define BOOST_BIND ::boost::bind
#endif
Regards,
Isaac Lascasas.