C++11 support on simple allocators comes for free. `aligned_allocator` does not
need to add any `construct` overloads to work with C++11 compilers.
(grafted from a1f056cf2a0318d7a8d4a4bf4c5019c09a8fdbd6
)
This commit is contained in:
Martinho Fernandes 2013-09-10 17:08:04 +02:00
parent 8ea9e762d6
commit d646cc95ad

View File

@ -729,15 +729,6 @@ public:
::new( p ) T( value );
}
// Support for c++11
#if (__cplusplus >= 201103L)
template<typename... Args>
void construct(pointer p, Args&&... args)
{
::new(p) T(std::forward<Args>(args)...);
}
#endif
void destroy( pointer p )
{
p->~T();