$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] Small Improvement in bind.hpp
From: Isaac Lascasas (isaaclascasas_at_[hidden])
Date: 2012-05-31 12:20:39
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.