[clang] [libcxx] [libc++] Implement LWG3528 (`make_from_tuple` can perform (the equivalent of) a C-style cast) (PR #85263)

Mark de Wever via cfe-commits cfe-commits at lists.llvm.org
Tue Mar 19 11:27:22 PDT 2024


================
@@ -195,6 +195,34 @@ void test_noexcept() {
     }
 }
 
+namespace LWG3528 {
+template <class _Tp, class _Tuple, class = std::void_t<>>
----------------
mordante wrote:

```suggestion
template <class Tp, class Tuple, class = std::void_t<>>
```

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


More information about the cfe-commits mailing list