From 71dfc80dda879b7b781eeb04f44d07a805d8e3cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Wed, 24 Apr 2019 22:50:11 +0200 Subject: [PATCH] Add BOOST_CONTAINER_FORCEINLINE to stable_vector_iterator's copy constructor --- include/boost/container/stable_vector.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/container/stable_vector.hpp b/include/boost/container/stable_vector.hpp index 92ef0f6..25d0d37 100644 --- a/include/boost/container/stable_vector.hpp +++ b/include/boost/container/stable_vector.hpp @@ -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()) {}