Boost C++ Libraries: Ticket #9629: is_permutation code for cxx14 is broken https://svn.boost.org/trac10/ticket/9629 <p> 1) Lines 59/61 refer to some macro "_VSTD" unknown to my compiler (Visual Studio 2012): </p> <blockquote> <p> <code>diff1_t len1 = _VSTD::distance(first1, last1);</code> </p> </blockquote> <p> Presumably "_VSTD" should be replaced by "std". </p> <p> 2) Lines 114/115 refer to some unqualified iterator_traits: </p> <blockquote> <p> <code>typedef typename iterator_traits&lt;_ForwardIterator1&gt;::value_type value1_t;</code> </p> </blockquote> <p> Presumably a "std::" prefix is missing here. </p> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/9629 Trac 1.4.3 Marshall Clow Tue, 04 Feb 2014 16:20:43 GMT status changed https://svn.boost.org/trac10/ticket/9629#comment:1 https://svn.boost.org/trac10/ticket/9629#comment:1 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">assigned</span> </li> </ul> Ticket Marshall Clow Tue, 04 Feb 2014 16:40:07 GMT <link>https://svn.boost.org/trac10/ticket/9629#comment:2 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/9629#comment:2</guid> <description> <p> I have messed this up to a fare-thee-well. </p> <p> Besides the problems that you've noted, there are _two_ versions of the four iterator calls to <code>is_permutation</code>; one in the cxx11 header and one in the cxx14 header. </p> <p> And neither of them checks to see if the standard library implements this call. </p> <p> <em>And</em> there's some weirdness in the git conversion that I have to sort out first. </p> </description> <category>Ticket</category> </item> <item> <dc:creator>Marshall Clow</dc:creator> <pubDate>Mon, 31 Mar 2014 19:06:12 GMT</pubDate> <title>status changed; resolution set https://svn.boost.org/trac10/ticket/9629#comment:3 https://svn.boost.org/trac10/ticket/9629#comment:3 <ul> <li><strong>status</strong> <span class="trac-field-old">assigned</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> → <span class="trac-field-new">fixed</span> </li> </ul> <p> Fixed in cf249c090c3021faebbcf5f6cf5574ce258aa7f6 </p> Ticket