Boost C++ Libraries: Ticket #3073: [assign] list_inserter regression test failure on VC10 https://svn.boost.org/trac10/ticket/3073 <p> The list_inserter test is failing on VC10 Beta 1: <a class="ext-link" href="http://tinyurl.com/pc75e5"><span class="icon">​</span>http://tinyurl.com/pc75e5</a> </p> <p> There are 2 problems here: </p> <p> 1) there is a possible ambiguity between boost::bind and std::tr1::bind. QUalifying the call to bind avoids this. </p> <p> 2) the bind to vector::push_back fails because there are now 2 versions of push_back (one that takes 'const T&amp;' and one that takes 'T&amp;&amp;'). </p> <p> Applying the workaround that is currently used for Borland (line 66 of list_inserter.cpp) avoids the ambiguity and allows the test to pass. </p> <p> The same problem occurs in GCC 4.4 (<a class="ext-link" href="http://tinyurl.com/qnozer"><span class="icon">​</span>http://tinyurl.com/qnozer</a>), but that also some other failures as well. </p> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/3073 Trac 1.4.3 rwebb <richard.webb@…> Sat, 13 Feb 2010 13:08:27 GMT summary changed https://svn.boost.org/trac10/ticket/3073#comment:1 https://svn.boost.org/trac10/ticket/3073#comment:1 <ul> <li><strong>summary</strong> <span class="trac-field-old">[assign] list_inserter regression test failure on VC10 beta 1</span> → <span class="trac-field-new">[assign] list_inserter regression test failure on VC10</span> </li> </ul> <p> Changing the bug title, as this still occurs in the VC10 release candidate. </p> Ticket Steven Watanabe Thu, 10 Jun 2010 14:33:01 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/3073#comment:2 https://svn.boost.org/trac10/ticket/3073#comment:2 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> → <span class="trac-field-new">fixed</span> </li> </ul> <p> (In <a class="changeset" href="https://svn.boost.org/trac10/changeset/62737" title="Resolve C++0x ambiguities. Fixes #3073">[62737]</a>) Resolve C++0x ambiguities. Fixes <a class="closed ticket" href="https://svn.boost.org/trac10/ticket/3073" title="#3073: Bugs: [assign] list_inserter regression test failure on VC10 (closed: fixed)">#3073</a> </p> Ticket