Constrain launch ~ operator to defined bits.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@185452 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -443,7 +443,7 @@ _LIBCPP_CONSTEXPR
|
||||
launch
|
||||
operator~(launch __x)
|
||||
{
|
||||
return static_cast<launch>(~static_cast<__launch_underlying_type>(__x));
|
||||
return static_cast<launch>(~static_cast<__launch_underlying_type>(__x) & 3);
|
||||
}
|
||||
|
||||
inline _LIBCPP_INLINE_VISIBILITY
|
||||
|
Reference in New Issue
Block a user