diff --git a/libcxx/include/__iterator/incrementable_traits.h b/libcxx/include/__iterator/incrementable_traits.h index 28717e06a14210..5a433982ba278a 100644 --- a/libcxx/include/__iterator/incrementable_traits.h +++ b/libcxx/include/__iterator/incrementable_traits.h @@ -60,9 +60,9 @@ struct incrementable_traits<_Tp> { template struct iterator_traits; -// Let `RI` be `remove_­cvref_­t`. The type `iter_­difference_­t` denotes -// `incrementable_­traits::difference_­type` if `iterator_­traits` names a specialization -// generated from the primary template, and `iterator_­traits::difference_­type` otherwise. +// Let `RI` be `remove_cvref_t`. The type `iter_difference_t` denotes +// `incrementable_traits::difference_type` if `iterator_traits` names a specialization +// generated from the primary template, and `iterator_traits::difference_type` otherwise. template using iter_difference_t = typename conditional_t<__is_primary_template > >::value, incrementable_traits >, diff --git a/libcxx/include/__iterator/readable_traits.h b/libcxx/include/__iterator/readable_traits.h index 9761756b4c1a04..fbad106e4ee14d 100644 --- a/libcxx/include/__iterator/readable_traits.h +++ b/libcxx/include/__iterator/readable_traits.h @@ -74,9 +74,9 @@ struct indirectly_readable_traits<_Tp> template struct iterator_traits; -// Let `RI` be `remove_­cvref_­t`. The type `iter_­value_­t` denotes -// `indirectly_­readable_­traits::value_­type` if `iterator_­traits` names a specialization -// generated from the primary template, and `iterator_­traits::value_­type` otherwise. +// Let `RI` be `remove_cvref_t`. The type `iter_value_t` denotes +// `indirectly_readable_traits::value_type` if `iterator_traits` names a specialization +// generated from the primary template, and `iterator_traits::value_type` otherwise. template using iter_value_t = typename conditional_t<__is_primary_template > >::value, indirectly_readable_traits >, diff --git a/libcxx/include/iterator b/libcxx/include/iterator index 151931bc4b0ec2..d9a0309e0b93a4 100644 --- a/libcxx/include/iterator +++ b/libcxx/include/iterator @@ -52,7 +52,7 @@ template template concept indirectly_writable = see below; // since C++20 -// [iterator.concept.winc], concept weakly_­incrementable +// [iterator.concept.winc], concept weakly_incrementable template concept weakly_incrementable = see below; // since C++20 @@ -60,11 +60,11 @@ template template concept incrementable = see below; // since C++20 -// [iterator.concept.iterator], concept input_­or_­output_­iterator +// [iterator.concept.iterator], concept input_or_output_iterator template concept input_or_output_iterator = see below; // since C++20 -// [iterator.concept.sentinel], concept sentinel_­for +// [iterator.concept.sentinel], concept sentinel_for template concept sentinel_for = see below; // since C++20