Skip to content

Commit 7523023

Browse files
committed
Add missing <includes>
1 parent b4afb2c commit 7523023

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

libcxx/include/__ranges/join_with_view.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include <__concepts/constructible.h>
1616
#include <__concepts/convertible_to.h>
1717
#include <__concepts/derived_from.h>
18+
#include <__concepts/equality_comparable.h>
1819
#include <__config>
1920
#include <__functional/bind_back.h>
2021
#include <__iterator/concepts.h>

libcxx/test/libcxx/ranges/range.adaptors/range.join.with/range.join.with.iterator/no_unique_address.compile.pass.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313

1414
// This test ensures that we use `[[no_unique_address]]` in `join_with_view::iterator`.
1515

16-
#include <iterator>
16+
#include <cstddef>
1717
#include <ranges>
18+
#include <variant>
1819

1920
struct IntRange : std::ranges::view_base {
2021
int* begin();

libcxx/test/std/ranges/range.adaptors/range.join.with/range.join.with.overview/adaptor.pass.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
#include <ranges>
1616

17+
#include <memory>
1718
#include <span>
1819
#include <string_view>
1920
#include <utility>

0 commit comments

Comments
 (0)