From a47234cc1ca49d0ee4aaf024ea4b386d65ddc338 Mon Sep 17 00:00:00 2001 From: Tobias Loew Date: Wed, 2 Sep 2020 07:24:04 +0200 Subject: [PATCH] fixed container_rebind for small_vector with options container_rebind did not compile for small_vector when options are used --- include/boost/container/detail/container_rebind.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/container/detail/container_rebind.hpp b/include/boost/container/detail/container_rebind.hpp index 0af9b9e..854291a 100644 --- a/include/boost/container/detail/container_rebind.hpp +++ b/include/boost/container/detail/container_rebind.hpp @@ -144,10 +144,10 @@ namespace dtl { //for small_vector,static_vector - template - struct container_rebind, U> + template + struct container_rebind, U> { - typedef small_vector::type>::template portable_rebind_alloc::type> type; + typedef small_vector::type>::template portable_rebind_alloc::type, O> type; }; template