25 May
2015
25 May
'15
3:35 p.m.
On Mon, May 25, 2015 at 4:12 AM, Peter Dimov wrote:
Glen Fernandes wrote:
#include
using boost::placeholders::_1;
I'm having a bit of trouble deciding between the above and
using namespace boost::placeholders;
The using declarations are closer to the current code and would be a better bet compatibility-wise, but the using directive seems more correct somehow.
With the former, ::boost::placeholders::detail (if it exists now, or will in the future) would not become ::detail, if that matters. Glen