[libcxx][nfc] Update the synopsis comment in <ranges> to include drop_view.

This commit is contained in:
zoecarver 2021-06-24 11:05:50 -07:00
parent ba032a614a
commit 46afddec41
1 changed files with 7 additions and 0 deletions

View File

@ -94,6 +94,13 @@ namespace std::ranges {
template<class T>
requires is_object_v<T>
class empty_view;
// [range.drop], drop view
template<view V>
class drop_view;
template<class T>
inline constexpr bool enable_borrowed_range<drop_view<T>> = enable_borrowed_range<T>;
}
*/