boost::shared pointer with the std::vector :
c:\Programme\Microsoft Visual Studio .NET\Vc7\include\boost\detail\shared_count.hpp(265) : error C2039: 'type_info' : is not a member of '_STL'
it relates to this chunk of code in shared_count.hpp(boost) :
virtual void * get_deleter(std::type_info const & ti) = 0;
and this one in shared_ptr.hpp(boost)
void * _internal_get_deleter(std::type_info const & ti) const
{
return pn.get_deleter(ti);
}
any ideas ???












