MSVC v6 build fails in file boost\detail\shared_count.hpp
Hi! I had to change line 216 in file boost\detail\shared_count.hpp from : void * get_deleter(std::type_info const & ti) const { to void * get_deleter(type_info const & ti) const { to get it built. (I am using boost in a prokejet. The build of my project fails in the above file ). I also had to make the same change in files boost\detail\sp_counted_base_w32.hpp and boost\detail\sp_counted_impl.hpp I have Visual Studio c++ 6.0. Is this a known problem ? Will it be pathced ? Regards, David --------------------------------------------------------------------- http://noepatents.eu.org/ Innovation, not litigation ! --- David Balazic mailto:david.balazic@hermes.si HERMES Softlab http://www.hermes-softlab.com Zagrebska cesta 104 Phone: +386 2 450 8851 SI-2000 Maribor Slovenija --------------------------------------------------------------------- "Be excellent to each other." - Bill S. Preston, Esq. & "Ted" Theodore Logan ---------------------------------------------------------------------
On 9/29/05, David Balazic
from : void * get_deleter(std::type_info const & ti) const
to void * get_deleter(type_info const & ti) const
I have Visual Studio c++ 6.0.
Is this a known problem ? Will it be pathced ?
Well, it's been a while since I've used VS6, but if it does not support the std:: namespace, it does not support C++. It may be the compiler, in which case you should get a new one (mingw works well on Windows). It might just be your STL headers, in which case, I'd suggest replacing it with STLPort or something .... better. Aaron Griffin
participants (2)
-
Aaron Griffin
-
David Balazic