[libcxx-commits] [libcxx] [libc++][complex] P2819R2: Add `tuple` protocol to `complex` (PR #79744)
Hristo Hristov via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Feb 13 08:51:24 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:
@philnik777 Removing `__fwd/get.h`
https://github.com/llvm/llvm-project/pull/81368/files#diff-7567a1ecc8c324da54370521a89d7a52f5a99b8fd4da3eee23b77c23b5da098e
from `elements_view` appears to have impacted it:
https://github.com/llvm/llvm-project/actions/runs/7885489699/job/21516737589#step:3:1685
so I have re-added the forward declarations of the `tuple-like`'s `get`s.
https://github.com/llvm/llvm-project/pull/79744
More information about the libcxx-commits
mailing list