Template it to avoid it in explicit instantiations
| 2543 | |
| 2544 | template<class Vector> //Template it to avoid it in explicit instantiations |
| 2545 | BOOST_CONTAINER_FORCEINLINE void priv_swap(Vector &x, dtl::true_type) //version_0 |
| 2546 | { this->m_holder.deep_swap(x.m_holder); } |
| 2547 | |
| 2548 | template<class Vector> //Template it to avoid it in explicit instantiations |
| 2549 | void priv_swap(Vector &x, dtl::false_type) //version_N |
nothing calls this directly
no test coverage detected