Remove uses of BOOST_NO_IOSTREAM et al

This commit is contained in:
Peter Dimov
2024-09-24 18:30:06 +03:00
parent 694e6822ac
commit d2c2407585
3 changed files with 4 additions and 78 deletions

View File

@@ -660,16 +660,12 @@ template<class T> inline typename local_shared_ptr<T>::element_type * get_pointe
// operator<<
#if !defined(BOOST_NO_IOSTREAM)
template<class E, class T, class Y> std::basic_ostream<E, T> & operator<< ( std::basic_ostream<E, T> & os, local_shared_ptr<Y> const & p )
{
os << p.get();
return os;
}
#endif // !defined(BOOST_NO_IOSTREAM)
// get_deleter
template<class D, class T> D * get_deleter( local_shared_ptr<T> const & p ) BOOST_SP_NOEXCEPT