Add BOOST_CONTAINER_FORCEINLINE to stable_vector_iterator's copy constructor

This commit is contained in:
Ion Gaztañaga
2019-04-24 22:50:11 +02:00
parent 06ee4f7a39
commit 71dfc80dda

View File

@@ -337,7 +337,7 @@ class stable_vector_iterator
: m_pn(other.node_pointer())
{}
stable_vector_iterator(const nonconst_iterator& other) BOOST_NOEXCEPT_OR_NOTHROW
BOOST_CONTAINER_FORCEINLINE stable_vector_iterator(const nonconst_iterator& other) BOOST_NOEXCEPT_OR_NOTHROW
: m_pn(other.node_pointer())
{}