mirror of
https://github.com/boostorg/detail.git
synced 2025-07-29 20:07:15 +02:00
Compare commits
3 Commits
boost-1.66
...
boost-1.68
Author | SHA1 | Date | |
---|---|---|---|
824721a753 | |||
bb0840b9c8 | |||
1631ba8134 |
@ -121,8 +121,13 @@ struct rebinder
|
||||
template<typename Type>
|
||||
struct result
|
||||
{
|
||||
typedef typename Allocator::BOOST_NESTED_TEMPLATE
|
||||
#ifdef BOOST_NO_CXX11_ALLOCATOR
|
||||
typedef typename Allocator::BOOST_NESTED_TEMPLATE
|
||||
rebind<Type>::other other;
|
||||
#else
|
||||
typedef typename std::allocator_traits<Allocator>::BOOST_NESTED_TEMPLATE
|
||||
rebind_alloc<Type> other;
|
||||
#endif
|
||||
};
|
||||
};
|
||||
|
||||
@ -159,7 +164,7 @@ void construct(void* p,const Type& t)
|
||||
*/
|
||||
|
||||
#pragma warning(push)
|
||||
#pragma warning(disable:4100)
|
||||
#pragma warning(disable:4100)
|
||||
#endif
|
||||
|
||||
template<typename Type>
|
||||
|
Reference in New Issue
Block a user