Index: clang/lib/Format/Format.cpp =================================================================== --- clang/lib/Format/Format.cpp +++ clang/lib/Format/Format.cpp @@ -3054,7 +3054,7 @@ LLVM_DEBUG(llvm::dbgs() << "Applying child configurations\n"); - for (const auto& MemBuf : llvm::reverse(ChildFormatTextToApply)){ + for (const auto &MemBuf : llvm::reverse(ChildFormatTextToApply)) { auto Ec = parseConfiguration(*MemBuf, &Style, AllowUnknownOptions, dropDiagnosticHandler); // It was already correctly parsed. Index: libcxx/include/forward_list =================================================================== --- libcxx/include/forward_list +++ libcxx/include/forward_list @@ -534,7 +534,7 @@ #if _LIBCPP_STD_VER >= 14 _NOEXCEPT; #else - _NOEXCEPT_(!__node_traits::propagate_on_container_move_assignment::value || + _NOEXCEPT_(!__node_traits::propagate_on_container_swap::value || __is_nothrow_swappable<__node_allocator>::value); #endif protected: @@ -599,7 +599,7 @@ #if _LIBCPP_STD_VER >= 14 _NOEXCEPT #else - _NOEXCEPT_(!__node_traits::propagate_on_container_move_assignment::value || + _NOEXCEPT_(!__node_traits::propagate_on_container_swap::value || __is_nothrow_swappable<__node_allocator>::value) #endif {