Commit a930324d by Jonathan Wakely Committed by Jonathan Wakely

Add noexcept to std::shared_future copy operations (LWG DR 2799)

	* include/std/future (shared_future): Add noexcept to copy constructor
	and copy-assignment operator (LWG 2799).

From-SVN: r254821
parent 6748a40f
2017-11-16 Jonathan Wakely <jwakely@redhat.com>
* include/std/future (shared_future): Add noexcept to copy constructor
and copy-assignment operator (LWG 2799).
2017-11-15 Jason Merrill <jason@redhat.com> 2017-11-15 Jason Merrill <jason@redhat.com>
* include/std/numeric (gcd): Fix typo. * include/std/numeric (gcd): Fix typo.
......
...@@ -896,7 +896,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -896,7 +896,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
constexpr shared_future() noexcept : _Base_type() { } constexpr shared_future() noexcept : _Base_type() { }
/// Copy constructor /// Copy constructor
shared_future(const shared_future& __sf) : _Base_type(__sf) { } shared_future(const shared_future& __sf) noexcept : _Base_type(__sf) { }
/// Construct from a future rvalue /// Construct from a future rvalue
shared_future(future<_Res>&& __uf) noexcept shared_future(future<_Res>&& __uf) noexcept
...@@ -908,7 +908,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -908,7 +908,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
: _Base_type(std::move(__sf)) : _Base_type(std::move(__sf))
{ } { }
shared_future& operator=(const shared_future& __sf) shared_future& operator=(const shared_future& __sf) noexcept
{ {
shared_future(__sf)._M_swap(*this); shared_future(__sf)._M_swap(*this);
return *this; return *this;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment