summaryrefslogtreecommitdiff
path: root/libcxx/test/std/strings/basic.string/string.nonmembers/string.cmp
AgeCommit message (Collapse)Author
2023-03-21[libc++] Qualifies size_t.Mark de Wever
This has been done using the following command find libcxx/test -type f -exec perl -pi -e 's|^([^/]+?)((?<!::)size_t)|\1std::\2|' \{} \; And manually removed some false positives in std/depr/depr.c.headers. The `std` module doesn't export `::size_t`, this is a preparation for that module. Reviewed By: ldionne, #libc, EricWF, philnik Differential Revision: https://reviews.llvm.org/D146088
2022-08-14[libc++] Uses operator<=> in string.Mark de Wever
Implements part of: - P1614R2 The Mothership has Landed Reviewed By: avogelsgesang, #libc, philnik Differential Revision: https://reviews.llvm.org/D131421