diff options
author | Mark de Wever <koraq@xs4all.nl> | 2024-05-22 11:05:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-22 11:05:01 +0200 |
commit | f98a3dd7a23ca1a85f62b38a2a7e82a53f80070b (patch) | |
tree | 9da1b566b95550367d486483adfa8651f12be1e3 /libcxx/test/std/utilities/function.objects | |
parent | a56e6dfd2e6b141b5475c05ad62c378906f565ba (diff) | |
download | llvm-f98a3dd7a23ca1a85f62b38a2a7e82a53f80070b.zip llvm-f98a3dd7a23ca1a85f62b38a2a7e82a53f80070b.tar.gz llvm-f98a3dd7a23ca1a85f62b38a2a7e82a53f80070b.tar.bz2 |
[NFC][libc++][test] Removes C++98 support. (#92930)
Libc++ has no separate C++98 support, it uses C++03 instead. This
removes some obsolete c++98 markers in the test.
Thanks to @StephanTLavavej for spotting this.
Diffstat (limited to 'libcxx/test/std/utilities/function.objects')
4 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/test/std/utilities/function.objects/func.search/func.search.bm/implicit_ctad.pass.cpp b/libcxx/test/std/utilities/function.objects/func.search/func.search.bm/implicit_ctad.pass.cpp index 863b4a5..50c89d6 100644 --- a/libcxx/test/std/utilities/function.objects/func.search/func.search.bm/implicit_ctad.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/func.search/func.search.bm/implicit_ctad.pass.cpp @@ -6,7 +6,7 @@ // //===----------------------------------------------------------------------===// -// UNSUPPORTED: c++98, c++03, c++11, c++14 +// UNSUPPORTED: c++03, c++11, c++14 // <functional> diff --git a/libcxx/test/std/utilities/function.objects/func.search/func.search.bmh/implicit_ctad.pass.cpp b/libcxx/test/std/utilities/function.objects/func.search/func.search.bmh/implicit_ctad.pass.cpp index 778f6d3..9cb4ef5 100644 --- a/libcxx/test/std/utilities/function.objects/func.search/func.search.bmh/implicit_ctad.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/func.search/func.search.bmh/implicit_ctad.pass.cpp @@ -6,7 +6,7 @@ // //===----------------------------------------------------------------------===// -// UNSUPPORTED: c++98, c++03, c++11, c++14 +// UNSUPPORTED: c++03, c++11, c++14 // <functional> diff --git a/libcxx/test/std/utilities/function.objects/func.search/func.search.default/implicit_ctad.pass.cpp b/libcxx/test/std/utilities/function.objects/func.search/func.search.default/implicit_ctad.pass.cpp index 3c90295..6334ed1 100644 --- a/libcxx/test/std/utilities/function.objects/func.search/func.search.default/implicit_ctad.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/func.search/func.search.default/implicit_ctad.pass.cpp @@ -6,7 +6,7 @@ // //===----------------------------------------------------------------------===// -// UNSUPPORTED: c++98, c++03, c++11, c++14 +// UNSUPPORTED: c++03, c++11, c++14 // <functional> diff --git a/libcxx/test/std/utilities/function.objects/operations.implicit_ctad.pass.cpp b/libcxx/test/std/utilities/function.objects/operations.implicit_ctad.pass.cpp index 03c46d2..bb4fb4b 100644 --- a/libcxx/test/std/utilities/function.objects/operations.implicit_ctad.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/operations.implicit_ctad.pass.cpp @@ -6,7 +6,7 @@ // //===----------------------------------------------------------------------===// -// UNSUPPORTED: c++98, c++03, c++11, c++14 +// UNSUPPORTED: c++03, c++11, c++14 // <functional> |