Boost C++ Libraries: Ticket #1894: fusion\support\tag_of.hpp, boost::fusion::traits https://svn.boost.org/trac10/ticket/1894 <p> Here is the code I tried to compile with VC++2008: </p> <p> typedef boost::fusion::traits::deduce_sequence &lt; </p> <blockquote> <p> boost::mpl::vector&lt;int, char&gt; </p> <blockquote class="citation"> <p> ::type seq_t; </p> </blockquote> </blockquote> <p> error C2039: 'is_mpl_sequence' : is not a member of 'boost::fusion::traits::detail' </p> <p> I think it because 'fusion\support\deduce_sequence.hpp' introduces 'detail' namespace into boost::fusion::traits (instead of boost::fusion). </p> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/1894 Trac 1.4.3 Mikhail Strelnikov <strelnikov@…> Thu, 23 Oct 2008 15:47:20 GMT attachment set https://svn.boost.org/trac10/ticket/1894 https://svn.boost.org/trac10/ticket/1894 <ul> <li><strong>attachment</strong> → <span class="trac-field-new">test_deduce_sequence.cpp</span> </li> </ul> <p> This file could be used to check that deduce_sequence compiles with boost::mpl::vector as parameter </p> Ticket Mikhail Strelnikov <strelnikov@…> Thu, 23 Oct 2008 15:52:03 GMT <link>https://svn.boost.org/trac10/ticket/1894#comment:1 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/1894#comment:1</guid> <description> <p> There is what I propose to change in 'boost/fusion/support/tag_of.hpp' (I'm not sure if these changes are ideologically correct but all the Boost::Fusion tests are passed with them): </p> <pre class="wiki">Comparing files tag_of.hpp and TAG_OF.HPP_OLD ***** tag_of.hpp struct tag_of : mpl::if_&lt; fusion::detail::is_mpl_sequence&lt;Sequence&gt;, mpl::identity&lt;mpl_sequence_tag&gt;, ***** TAG_OF.HPP_OLD struct tag_of : mpl::if_&lt; detail::is_mpl_sequence&lt;Sequence&gt;, mpl::identity&lt;mpl_sequence_tag&gt;, ***** ***** tag_of.hpp { BOOST_MPL_ASSERT_NOT((fusion::detail::is_specialized&lt;Sequence&gt;)); }; ***** TAG_OF.HPP_OLD { BOOST_MPL_ASSERT_NOT((detail::is_specialized&lt;Sequence&gt;)); }; ***** </pre><p> Thanks. </p> </description> <category>Ticket</category> </item> <item> <author>Mikhail Strelnikov <strelnikov@…></author> <pubDate>Thu, 18 Dec 2008 15:23:47 GMT</pubDate> <title>attachment set https://svn.boost.org/trac10/ticket/1894 https://svn.boost.org/trac10/ticket/1894 <ul> <li><strong>attachment</strong> → <span class="trac-field-new">fusion_tag_of.patch</span> </li> </ul> <p> patch for the 'boost/fusion/support/tag_of.hpp' in the unified diff format </p> Ticket Mikhail Strelnikov <strelnikov@…> Wed, 14 Jan 2009 16:33:36 GMT milestone changed https://svn.boost.org/trac10/ticket/1894#comment:2 https://svn.boost.org/trac10/ticket/1894#comment:2 <ul> <li><strong>milestone</strong> <span class="trac-field-old">Boost 1.36.0</span> → <span class="trac-field-new">Boost 1.38.0</span> </li> </ul> Ticket Joel de Guzman Thu, 18 Jun 2009 03:27:40 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/1894#comment:3 https://svn.boost.org/trac10/ticket/1894#comment:3 <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> Ticket