Re: [Boost-users] [function] [stlport] typeinfo in stlport 5.1.5
Is there an appropriate way to tell BOOST or stlport where type_info is? The correct macro to test is BOOST_NO_STD_TYPEINFO: I don't know whether it's defined properly on your configuration; can you check? Modification: ---------function_base.hpp--------- #ifdef BOOST_NO_STD_TYPEINFO #warning BOOST_NO_STD_TYPEINFO defined #endif #ifdef _STLP_INTERNAL_TYPEINFO #warning _STLP_INTERNAL_TYPEINFO defined #endif ---------function_base.hpp--------- gives: function_base.hpp:48:2: warning: #warning _STLP_INTERNAL_TYPEINFO defined meaning BOOST_NO_STD_TYPEINFO is undefined there. _STLP_INTERNAL_TYPEINFO is used in file stlport/typeinfo and means
On Sat, Aug 23, 2008 at 1:46 AM, Peter Dimov
participants (1)
-
Gulevich Vasili Victorovich