Correct definition of C++11 alias rebind

This commit is contained in:
Glen Fernandes
2022-04-26 14:11:31 -04:00
parent 1e5c86eb9d
commit d74140983d

View File

@ -219,7 +219,7 @@ struct pointer_traits<T*>
#if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES)
template<class U>
using rebind = typename rebind_to<U>::type*;
using rebind = typename rebind_to<U>::type;
#endif
};