From d74140983da3379d08f0a0bfc3dd36fc6d452100 Mon Sep 17 00:00:00 2001 From: Glen Fernandes Date: Tue, 26 Apr 2022 14:11:31 -0400 Subject: [PATCH] Correct definition of C++11 alias rebind --- include/boost/core/pointer_traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/core/pointer_traits.hpp b/include/boost/core/pointer_traits.hpp index 71c9df6..fbc76e7 100644 --- a/include/boost/core/pointer_traits.hpp +++ b/include/boost/core/pointer_traits.hpp @@ -219,7 +219,7 @@ struct pointer_traits #if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES) template - using rebind = typename rebind_to::type*; + using rebind = typename rebind_to::type; #endif };