make_shared removed

[SVN r37404]
This commit is contained in:
Peter Dimov
2007-04-09 18:42:49 +00:00
parent ae6c180be8
commit 6e8f075d42

View File

@ -179,12 +179,6 @@ template<class T> void swap(weak_ptr<T> & a, weak_ptr<T> & b)
a.swap(b);
}
// deprecated, provided for backward compatibility
template<class T> shared_ptr<T> make_shared(weak_ptr<T> const & r)
{
return r.lock();
}
} // namespace boost
#ifdef BOOST_MSVC