From 62d9833bbf09f4d355e94697106e4d7e21827add Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Mon, 29 Jun 2015 21:55:51 +0900 Subject: [PATCH] Add missing remove_const. --- include/boost/fusion/container/generation/make_vector.hpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/boost/fusion/container/generation/make_vector.hpp b/include/boost/fusion/container/generation/make_vector.hpp index 1c8a86c8..4a237011 100644 --- a/include/boost/fusion/container/generation/make_vector.hpp +++ b/include/boost/fusion/container/generation/make_vector.hpp @@ -1,5 +1,5 @@ /*============================================================================= - Copyright (c) 2014 Kohei Takahashi + Copyright (c) 2014-2015 Kohei Takahashi Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) @@ -20,6 +20,7 @@ #include #include +#include #include namespace boost { namespace fusion @@ -50,7 +51,9 @@ namespace boost { namespace fusion typename trim_void< vector<> , typename detail::as_fusion_element< - typename remove_reference::type + typename remove_const< + typename remove_reference::type + >::type >::type... >::type type;