$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: [boost] boost::container::set insert range bug
From: Han Wang (wanghan02_at_[hidden])
Date: 2016-02-19 10:47:41
Hi,
Let's say we have some simple code here.
boost::container::set<int> s;
boost::container::set<int> const sp;
s.insert(boost::begin(sp), boost::end(sp));
This insert call will cause "ambiguous call to overloaded function".
Best regards,
Han