[libcxx-commits] [libcxx] [libc++] Fix UB in <expected> related to "has value" flag (#68552) (PR #68733)

Jan Kokemüller via libcxx-commits libcxx-commits at lists.llvm.org
Mon Oct 30 03:38:19 PDT 2023


================
@@ -70,7 +70,7 @@ static_assert(!HasMemberSwap<MoveMayThrow, MoveMayThrow>);
 
 // Test noexcept
 template <class T, class E>
-concept MemberSwapNoexcept =
+concept MemberSwapNoexcept = //
----------------
jiixyj wrote:

I added this to make the file "clang-format clean".

https://github.com/llvm/llvm-project/pull/68733


More information about the libcxx-commits mailing list