diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2022-05-12 19:33:58 +0100 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2022-05-13 20:40:05 +0100 |
commit | 8659bcd6b7e692a9a516cd57bb19303a2efe78ba (patch) | |
tree | 69f26002b5ffbf110b14f08dc3e18654127ba8ae | |
parent | c829b04bc3e1dcd4b06fa3bc2e62dd2d1eb0b036 (diff) | |
download | gcc-8659bcd6b7e692a9a516cd57bb19303a2efe78ba.zip gcc-8659bcd6b7e692a9a516cd57bb19303a2efe78ba.tar.gz gcc-8659bcd6b7e692a9a516cd57bb19303a2efe78ba.tar.bz2 |
libstdc++: Add noexcept to std::launch operators
libstdc++-v3/ChangeLog:
* include/std/future (launch): Make operators noexcept.
-rw-r--r-- | libstdc++-v3/include/std/future | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libstdc++-v3/include/std/future b/libstdc++-v3/include/std/future index 3d5d793..f7de8dd 100644 --- a/libstdc++-v3/include/std/future +++ b/libstdc++-v3/include/std/future @@ -147,34 +147,34 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION deferred = 2 }; - constexpr launch operator&(launch __x, launch __y) + constexpr launch operator&(launch __x, launch __y) noexcept { return static_cast<launch>( static_cast<int>(__x) & static_cast<int>(__y)); } - constexpr launch operator|(launch __x, launch __y) + constexpr launch operator|(launch __x, launch __y) noexcept { return static_cast<launch>( static_cast<int>(__x) | static_cast<int>(__y)); } - constexpr launch operator^(launch __x, launch __y) + constexpr launch operator^(launch __x, launch __y) noexcept { return static_cast<launch>( static_cast<int>(__x) ^ static_cast<int>(__y)); } - constexpr launch operator~(launch __x) + constexpr launch operator~(launch __x) noexcept { return static_cast<launch>(~static_cast<int>(__x)); } - inline launch& operator&=(launch& __x, launch __y) + inline launch& operator&=(launch& __x, launch __y) noexcept { return __x = __x & __y; } - inline launch& operator|=(launch& __x, launch __y) + inline launch& operator|=(launch& __x, launch __y) noexcept { return __x = __x | __y; } - inline launch& operator^=(launch& __x, launch __y) + inline launch& operator^=(launch& __x, launch __y) noexcept { return __x = __x ^ __y; } /// Status code for futures |