Boost C++ Libraries: Ticket #6: tie in utility.hpp and tuple.hpp clash. https://svn.boost.org/trac10/ticket/6 <pre class="wiki">Hi the two declarations of the tie function in utility.hpp and tuple.hpp are conflicting. The compiler (KCC) complains about more than one matching function template (I think correctly). Perhaps one should remove tie from utility.hpp? Another problem in tuple.hpp are the following function declarations: template&lt;class T0, class T1&gt; boost::detail::tuples::make_tuple_mapper&lt;T0, T1&gt;::type inline make_tuple(const T0&amp; t0, const T1&amp; t1) { return boost::detail::tuples::make_tuple_mapper&lt;T0, T1&gt;::type(t0, t1); } I think it sould be: template&lt;class T0, class T1&gt; typename boost::detail::tuples::make_tuple_mapper&lt;T0, T1&gt;::type inline make_tuple(const T0&amp; t0, const T1&amp; t1) { return boost::detail::tuples::make_tuple_mapper&lt;T0, T1&gt;::type(t0, t1); } At least KCC 4.0 requires this, but I haven't tried on any other compilers. Yours, Mathias Koerner </pre> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/6 Trac 1.4.3 jsiek Thu, 27 Sep 2001 18:26:34 GMT <link>https://svn.boost.org/trac10/ticket/6#comment:1 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/6#comment:1</guid> <description> <pre class="wiki">Logged In: YES user_id=32836 tie() has already been deleted from utility.hpp (see the current CVS). Jaakko can handle the other problem... </pre> </description> <category>Ticket</category> </item> <item> <dc:creator>jmaurer</dc:creator> <pubDate>Thu, 27 Sep 2001 18:31:29 GMT</pubDate> <title>status changed https://svn.boost.org/trac10/ticket/6#comment:2 https://svn.boost.org/trac10/ticket/6#comment:2 <ul> <li><strong>status</strong> <span class="trac-field-old">assigned</span> → <span class="trac-field-new">closed</span> </li> </ul> <pre class="wiki">Logged In: YES user_id=53943 These were fixed post-1.24.0. Boost version 1.25.0 is due soon. Otherwise, get the fixed files from our CVS repository. </pre> Ticket