Skip to content

Commit de46d63

Browse files
committed
Update synopsis in <ranges> (LWG-4074)
1 parent 37525db commit de46d63

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

libcxx/include/ranges

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -286,13 +286,10 @@ namespace std::ranges {
286286
class join_view;
287287
288288
// [range.join.with], join with view
289-
template<class R, class P>
290-
concept compatible-joinable-ranges = see below; // exposition only
291-
292289
template<input_range V, forward_range Pattern>
293290
requires view<V> && input_range<range_reference_t<V>>
294291
&& view<Pattern>
295-
&& compatible-joinable-ranges<range_reference_t<V>, Pattern>
292+
&& concatable<range_reference_t<V>, Pattern>
296293
class join_with_view; // since C++23
297294
298295
namespace views { inline constexpr unspecified join_with = unspecified; } // since C++23

0 commit comments

Comments
 (0)