
6 Oct
2010
6 Oct
'10
3:10 p.m.
On 6 October 2010 16:00, Mateusz Loskot <mateusz@loskot.net> wrote:
1) set_extractor
a) original code
template <class ValueType> struct set_extractor { typedef ValueType value_type; typedef ValueType key_type;
b) preprocessed output
struct set_extractor { template <class ValueType> struct apply { typedef ValueType value_type; typedef ValueType key_type;
It looks like you've got Boost 1.41 installed at /usr/local/, and are somehow mixing up headers from different versions of boost: http://svn.boost.org/svn/boost/tags/release/Boost_1_41_0/boost/unordered/det... http://svn.boost.org/svn/boost/tags/release/Boost_1_44_0/boost/unordered/det... Daniel