mirror of
https://github.com/boostorg/container.git
synced 2025-08-01 21:44:27 +02:00
Merge branch 'Romain-Geissler-1A-warning-deprecated-copy' into develop
This commit is contained in:
@@ -72,6 +72,13 @@ class new_allocator<void>
|
||||
new_allocator(const new_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
|
||||
{}
|
||||
|
||||
//!Copy assignment operator from other new_allocator.
|
||||
//!Never throws
|
||||
new_allocator& operator=(const new_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
|
||||
//!Constructor from related new_allocator.
|
||||
//!Never throws
|
||||
template<class T2>
|
||||
@@ -130,6 +137,13 @@ class new_allocator
|
||||
new_allocator(const new_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
|
||||
{}
|
||||
|
||||
//!Copy assignment operator from other new_allocator.
|
||||
//!Never throws
|
||||
new_allocator& operator=(const new_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
|
||||
//!Constructor from related new_allocator.
|
||||
//!Never throws
|
||||
template<class T2>
|
||||
|
Reference in New Issue
Block a user