I was trying to decipher the implementation of smart pointers in boost and found out that the simplest implementation of shared_ptr is hidden under the BOOST_NO_MEMBER_TEMPLATES flag.
With this flag, shared_ptr uses an atomic_count type instead of the sp_counted_base (in sp_counted_base.hpp).
Now, looking at weak_ptr, I can see that it always includes sp_counted_base.hpp , thus assuming that shared_ptr uses sp_counted_base. But there is no alternative implementation if the flag BOOST_NO_MEMBER_TEMPLATES is defined.
What this tells me is that you can't use weak_ptrs if you have defined BOOST_NO_MEMBER_TEMPLATES. Is that right, or am I missing something?
When were the weak_ptrs introduced to boost?