| 1148 | } |
| 1149 | |
| 1150 | template<class T, class M> inline shared_ptr<T> atomic_load_explicit( shared_ptr<T> const * p, /*memory_order mo*/ M ) BOOST_SP_NOEXCEPT |
| 1151 | { |
| 1152 | return atomic_load( p ); |
| 1153 | } |
| 1154 | |
| 1155 | template<class T> void atomic_store( shared_ptr<T> * p, shared_ptr<T> r ) BOOST_SP_NOEXCEPT |
| 1156 | { |
nothing calls this directly
no test coverage detected