Skip to content

Commit f98a3dd

Browse files
authored
[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.
1 parent a56e6df commit f98a3dd

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

libcxx/test/std/containers/associative/map/map.value_compare/types.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
// class value_compare
1212

13-
// REQUIRES: c++98 || c++03 || c++11 || c++14
13+
// REQUIRES: c++03 || c++11 || c++14
1414

1515
#include <map>
1616
#include <string>

libcxx/test/std/containers/associative/multimap/multimap.value_compare/types.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
// class value_compare
1212

13-
// REQUIRES: c++98 || c++03 || c++11 || c++14
13+
// REQUIRES: c++03 || c++11 || c++14
1414

1515
#include <map>
1616
#include <string>

libcxx/test/std/iterators/predef.iterators/counted.iterator/implicit_ctad.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++98, c++03, c++11, c++14, c++17
9+
// UNSUPPORTED: c++03, c++11, c++14, c++17
1010

1111
// counted_iterator
1212

libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iterator/implicit_ctad.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++98, c++03, c++11, c++14
9+
// UNSUPPORTED: c++03, c++11, c++14
1010

1111
// <iterator>
1212

libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iterator/implicit_ctad.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++98, c++03, c++11, c++14
9+
// UNSUPPORTED: c++03, c++11, c++14
1010

1111
// <iterator>
1212

libcxx/test/std/iterators/predef.iterators/move.iterators/move.iterator/implicit_ctad.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++98, c++03, c++11, c++14
9+
// UNSUPPORTED: c++03, c++11, c++14
1010

1111
// <iterator>
1212

libcxx/test/std/strings/string.view/string.view.deduct/implicit.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++98, c++03, c++11, c++14
9+
// UNSUPPORTED: c++03, c++11, c++14
1010

1111
// <string_view>
1212

libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.guard/implicit_ctad.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//===----------------------------------------------------------------------===//
88

99
// UNSUPPORTED: no-threads
10-
// UNSUPPORTED: c++98, c++03, c++11, c++14
10+
// UNSUPPORTED: c++03, c++11, c++14
1111

1212
// <mutex>
1313

libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/implicit_ctad.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//===----------------------------------------------------------------------===//
88

99
// UNSUPPORTED: no-threads
10-
// UNSUPPORTED: c++98, c++03, c++11, c++14
10+
// UNSUPPORTED: c++03, c++11, c++14
1111

1212
// <mutex>
1313

libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/implicit_ctad.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//===----------------------------------------------------------------------===//
88

99
// UNSUPPORTED: no-threads
10-
// UNSUPPORTED: c++98, c++03, c++11, c++14
10+
// UNSUPPORTED: c++03, c++11, c++14
1111

1212
// <shared_mutex>
1313

libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/implicit_ctad.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//===----------------------------------------------------------------------===//
88

99
// UNSUPPORTED: no-threads
10-
// UNSUPPORTED: c++98, c++03, c++11, c++14
10+
// UNSUPPORTED: c++03, c++11, c++14
1111

1212
// <mutex>
1313

libcxx/test/std/utilities/function.objects/func.search/func.search.bm/implicit_ctad.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++98, c++03, c++11, c++14
9+
// UNSUPPORTED: c++03, c++11, c++14
1010

1111
// <functional>
1212

libcxx/test/std/utilities/function.objects/func.search/func.search.bmh/implicit_ctad.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++98, c++03, c++11, c++14
9+
// UNSUPPORTED: c++03, c++11, c++14
1010

1111
// <functional>
1212

libcxx/test/std/utilities/function.objects/func.search/func.search.default/implicit_ctad.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++98, c++03, c++11, c++14
9+
// UNSUPPORTED: c++03, c++11, c++14
1010

1111
// <functional>
1212

libcxx/test/std/utilities/function.objects/operations.implicit_ctad.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
// UNSUPPORTED: c++98, c++03, c++11, c++14
9+
// UNSUPPORTED: c++03, c++11, c++14
1010

1111
// <functional>
1212

0 commit comments

Comments
 (0)