Skip to content

Commit fc3923f

Browse files
committed
[libc++] Remove U+00AD SOFT HYPHEN from comments in tests. NFC.
git grep $(printf '\xc2\xad') ../libcxx
1 parent 6745b6a commit fc3923f

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

libcxx/test/std/algorithms/alg.modifying.operations/alg.swap/ranges.swap_ranges.pass.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
// UNSUPPORTED: libcpp-no-concepts
1313
// UNSUPPORTED: libcpp-has-no-incomplete-ranges
1414

15-
// template<input_­iterator I1, sentinel_­for<I1> S1, input_­iterator I2, sentinel_­for<I2> S2>
16-
// requires indirectly_­swappable<I1, I2>
15+
// template<input_iterator I1, sentinel_for<I1> S1, input_iterator I2, sentinel_for<I2> S2>
16+
// requires indirectly_swappable<I1, I2>
1717
// constexpr ranges::swap_ranges_result<I1, I2>
1818
// ranges::swap_ranges(I1 first1, S1 last1, I2 first2, S2 last2);
19-
// template<input_­range R1, input_range R2>
20-
// requires indirectly_­swappable<iterator_t<R1>, iterator_t<R2>>
19+
// template<input_range R1, input_range R2>
20+
// requires indirectly_swappable<iterator_t<R1>, iterator_t<R2>>
2121
// constexpr ranges::swap_ranges_result<borrowed_iterator_t<R1>, borrowed_iterator_t<R2>>
2222
// ranges::swap_ranges(R1&& r1, R2&& r2);
2323

libcxx/test/std/iterators/iterator.requirements/indirectcallable/indirectinvocable/indirectly_comparable.compile.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// UNSUPPORTED: libcpp-no-concepts
1111

1212
// template<class I1, class I2, class R, class P1, class P2>
13-
// concept indirectly_­comparable;
13+
// concept indirectly_comparable;
1414

1515
#include <functional>
1616
#include <iterator>

libcxx/test/std/language.support/support.coroutines/coroutine.handle/coroutine.handle.noop/noop_coroutine.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ int main(int, char**)
5959
static_assert(h.done() == false, "");
6060

6161
// [coroutine.handle.noop.resumption]p2
62-
// Remarks: If noop_­coroutine_­handle is converted to
63-
// coroutine_­handle<>, calls to operator(), resume and
62+
// Remarks: If noop_coroutine_handle is converted to
63+
// coroutine_handle<>, calls to operator(), resume and
6464
// destroy on that handle will also have no observable
6565
// effects.
6666
base.resume();

libcxx/test/std/ranges/range.adaptors/range.reverse/ctor.default.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// UNSUPPORTED: libcpp-no-concepts
1111
// UNSUPPORTED: libcpp-has-no-incomplete-ranges
1212

13-
// reverse_view() requires default_­initializable<V> = default;
13+
// reverse_view() requires default_initializable<V> = default;
1414

1515
#include <ranges>
1616
#include <cassert>

libcxx/test/std/ranges/range.factories/range.iota.view/ctor.default.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// UNSUPPORTED: libcpp-no-concepts
1111
// UNSUPPORTED: libcpp-has-no-incomplete-ranges
1212

13-
// iota_view() requires default_­initializable<W> = default;
13+
// iota_view() requires default_initializable<W> = default;
1414

1515
#include <ranges>
1616
#include <cassert>

libcxx/test/std/ranges/range.factories/range.iota.view/sentinel/minus.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
// UNSUPPORTED: libcpp-has-no-incomplete-ranges
1212

1313
// friend constexpr iter_difference_t<W> operator-(const iterator& x, const sentinel& y)
14-
// requires sized_­sentinel_­for<Bound, W>;
14+
// requires sized_sentinel_for<Bound, W>;
1515
// friend constexpr iter_difference_t<W> operator-(const sentinel& x, const iterator& y)
16-
// requires sized_­sentinel_­for<Bound, W>;
16+
// requires sized_sentinel_for<Bound, W>;
1717

1818
#include <ranges>
1919
#include <cassert>

0 commit comments

Comments
 (0)