PDA

View Full Version : stl and boost


anubis
05-03-2003, 07:18 AM
i remember having used boost and stlport together a million times before on both vs.net and gcc and suddenly i get this error when i try to use a
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 ???

anubis
05-03-2003, 08:04 AM
solved it...
strange that this error never occured before.
the problem was that stlport redefines std to _STL but imports type_info from the vendor stl which somehow confused boost because it was looking for type_info in _STL and not in std.
anyway i configured stlport not to redefine it's namespace and now it works.

Dia Kharrat
05-03-2003, 12:31 PM
nice one :)

baldurk
05-03-2003, 12:39 PM
to me, that code is really fugly.