id summary reporter owner description type status milestone component version severity resolution keywords cc 6 tie in utility.hpp and tuple.hpp clash. nobody jmaurer "{{{ 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 boost::detail::tuples::make_tuple_mapper::type inline make_tuple(const T0& t0, const T1& t1) { return boost::detail::tuples::make_tuple_mapper::type(t0, t1); } I think it sould be: template typename boost::detail::tuples::make_tuple_mapper::type inline make_tuple(const T0& t0, const T1& t1) { return boost::detail::tuples::make_tuple_mapper::type(t0, t1); } At least KCC 4.0 requires this, but I haven't tried on any other compilers. Yours, Mathias Koerner }}}" Bugs closed None None Duplicate