
31 Mar
2012
31 Mar
'12
8:58 p.m.
El 31/03/2012 15:47, Vicente J. Botet Escriba escribió:
../../../boost/container/allocator_traits.hpp:170:105: error: type name requires a specifier or qualifier template <typename T> using rebind_alloc = boost::intrusive::detail::type_rebinder<Alloc, T>::type;
when compiling with clang 3.0 C++11
Adding typename in
#if !defined(BOOST_NO_TEMPLATE_ALIASES) //C++11 template <typename T> using rebind_alloc = typename boost::intrusive::detail::type_rebinder<Alloc, T>::type;
Solve the issue.
I have checked it with clang 3.0 (c++11) and gcc-4.7.0 (c++11).
Could you try to fix this?
Done, thanks. Ion