[libcxx-commits] [libcxx] [libc++][complex] P2819R2: Add `tuple` protocol to `complex` (PR #79744)

Hristo Hristov via libcxx-commits libcxx-commits at lists.llvm.org
Fri Feb 16 02:17:46 PST 2024


================
@@ -16,6 +16,11 @@
 #include <__concepts/derived_from.h>
 #include <__concepts/equality_comparable.h>
 #include <__config>
+#include <__fwd/array.h>
+#include <__fwd/complex.h>
+#include <__fwd/pair.h>
+#include <__fwd/subrange.h>
+#include <__fwd/tuple.h>
 #include <__iterator/concepts.h>
----------------
H-G-Hristov wrote:

It makes sense. I'll add  

```
#include <__fwd/array.h>
#include <__fwd/pair.h>
#include <__fwd/subrange.h>
#include <__fwd/tuple.h>
```

in another patch.

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


More information about the libcxx-commits mailing list