Boost C++ Libraries: Ticket #5319: BOOST_HAS_VARIADIC_TMPL defined in non-C++0x environment. https://svn.boost.org/trac10/ticket/5319 <p> in boost/config/compiler/gcc.hpp </p> <pre class="wiki">// Variadic templates compiler: // http://www.generic-programming.org/~dgregor/cpp/variadic-templates.html # if defined(__VARIADIC_TEMPLATES) || (__GNUC__ &gt; 4) || ((__GNUC__ == 4) &amp;&amp; (__GNUC_MINOR__ &gt;= 4)) # define BOOST_HAS_VARIADIC_TMPL # else # define BOOST_NO_VARIADIC_TEMPLATES # endif #endif </pre><p> Should add condition </p> <pre class="wiki">defined(__GXX_EXPERIMENTAL_CXX0X__) </pre> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/5319 Trac 1.4.3 John Maddock Wed, 16 Mar 2011 18:45:11 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/5319#comment:1 https://svn.boost.org/trac10/ticket/5319#comment:1 <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/70019" title="Don't enable GCC C++0x features in non-C++0x mode. Update tests to ...">[70019]</a>) Don't enable GCC C++0x features in non-C++0x mode. Update tests to actually fail unless we're in C++0x mode. Fixes <a class="closed ticket" href="https://svn.boost.org/trac10/ticket/5320" title="#5320: Bugs: variadic template used without -std=c++0x (closed: fixed)">#5320</a>. Fixes <a class="closed ticket" href="https://svn.boost.org/trac10/ticket/5319" title="#5319: Bugs: BOOST_HAS_VARIADIC_TMPL defined in non-C++0x environment. (closed: fixed)">#5319</a>. </p> Ticket