From e3bdfe639cf4ad5f180730d8bec31eba251d349d Mon Sep 17 00:00:00 2001 From: Casey Carter Date: Mon, 17 Apr 2017 20:15:16 +0000 Subject: [optional] Update synopsis for LWG2934 (comment-only change) llvm-svn: 300488 --- .../test/std/utilities/optional/optional.comp_with_t/equal.pass.cpp | 4 ++-- .../test/std/utilities/optional/optional.comp_with_t/greater.pass.cpp | 4 ++-- .../utilities/optional/optional.comp_with_t/greater_equal.pass.cpp | 4 ++-- .../std/utilities/optional/optional.comp_with_t/less_equal.pass.cpp | 4 ++-- .../std/utilities/optional/optional.comp_with_t/less_than.pass.cpp | 4 ++-- .../std/utilities/optional/optional.comp_with_t/not_equal.pass.cpp | 4 ++-- libcxx/test/std/utilities/optional/optional.relops/equal.pass.cpp | 2 +- .../std/utilities/optional/optional.relops/greater_equal.pass.cpp | 2 +- .../test/std/utilities/optional/optional.relops/greater_than.pass.cpp | 2 +- .../test/std/utilities/optional/optional.relops/less_equal.pass.cpp | 2 +- libcxx/test/std/utilities/optional/optional.relops/less_than.pass.cpp | 2 +- libcxx/test/std/utilities/optional/optional.relops/not_equal.pass.cpp | 2 +- 12 files changed, 18 insertions(+), 18 deletions(-) (limited to 'libcxx/test/std/utilities') diff --git a/libcxx/test/std/utilities/optional/optional.comp_with_t/equal.pass.cpp b/libcxx/test/std/utilities/optional/optional.comp_with_t/equal.pass.cpp index 29fb7a8431f..dc69739271b 100644 --- a/libcxx/test/std/utilities/optional/optional.comp_with_t/equal.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.comp_with_t/equal.pass.cpp @@ -10,8 +10,8 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // -// template constexpr bool operator==(const optional& x, const T& v); -// template constexpr bool operator==(const T& v, const optional& x); +// template constexpr bool operator==(const optional& x, const U& v); +// template constexpr bool operator==(const U& v, const optional& x); #include diff --git a/libcxx/test/std/utilities/optional/optional.comp_with_t/greater.pass.cpp b/libcxx/test/std/utilities/optional/optional.comp_with_t/greater.pass.cpp index ae34eb20517..e1bad12e3f6 100644 --- a/libcxx/test/std/utilities/optional/optional.comp_with_t/greater.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.comp_with_t/greater.pass.cpp @@ -10,8 +10,8 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // -// template constexpr bool operator>(const optional& x, const T& v); -// template constexpr bool operator>(const T& v, const optional& x); +// template constexpr bool operator>(const optional& x, const U& v); +// template constexpr bool operator>(const U& v, const optional& x); #include diff --git a/libcxx/test/std/utilities/optional/optional.comp_with_t/greater_equal.pass.cpp b/libcxx/test/std/utilities/optional/optional.comp_with_t/greater_equal.pass.cpp index dac94002661..342ddffc2c7 100644 --- a/libcxx/test/std/utilities/optional/optional.comp_with_t/greater_equal.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.comp_with_t/greater_equal.pass.cpp @@ -10,8 +10,8 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // -// template constexpr bool operator>=(const optional& x, const T& v); -// template constexpr bool operator>=(const T& v, const optional& x); +// template constexpr bool operator>=(const optional& x, const U& v); +// template constexpr bool operator>=(const U& v, const optional& x); #include diff --git a/libcxx/test/std/utilities/optional/optional.comp_with_t/less_equal.pass.cpp b/libcxx/test/std/utilities/optional/optional.comp_with_t/less_equal.pass.cpp index b71f8363b0a..bcf6afcc6bf 100644 --- a/libcxx/test/std/utilities/optional/optional.comp_with_t/less_equal.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.comp_with_t/less_equal.pass.cpp @@ -10,8 +10,8 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // -// template constexpr bool operator<=(const optional& x, const T& v); -// template constexpr bool operator<=(const T& v, const optional& x); +// template constexpr bool operator<=(const optional& x, const U& v); +// template constexpr bool operator<=(const U& v, const optional& x); #include diff --git a/libcxx/test/std/utilities/optional/optional.comp_with_t/less_than.pass.cpp b/libcxx/test/std/utilities/optional/optional.comp_with_t/less_than.pass.cpp index 84456b3baa6..3d5e2144a96 100644 --- a/libcxx/test/std/utilities/optional/optional.comp_with_t/less_than.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.comp_with_t/less_than.pass.cpp @@ -10,8 +10,8 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // -// template constexpr bool operator<(const optional& x, const T& v); -// template constexpr bool operator<(const T& v, const optional& x); +// template constexpr bool operator<(const optional& x, const U& v); +// template constexpr bool operator<(const U& v, const optional& x); #include diff --git a/libcxx/test/std/utilities/optional/optional.comp_with_t/not_equal.pass.cpp b/libcxx/test/std/utilities/optional/optional.comp_with_t/not_equal.pass.cpp index a4ffdc25e72..7da9b7ba7a0 100644 --- a/libcxx/test/std/utilities/optional/optional.comp_with_t/not_equal.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.comp_with_t/not_equal.pass.cpp @@ -10,8 +10,8 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // -// template constexpr bool operator!=(const optional& x, const T& v); -// template constexpr bool operator!=(const T& v, const optional& x); +// template constexpr bool operator!=(const optional& x, const U& v); +// template constexpr bool operator!=(const U& v, const optional& x); #include diff --git a/libcxx/test/std/utilities/optional/optional.relops/equal.pass.cpp b/libcxx/test/std/utilities/optional/optional.relops/equal.pass.cpp index 7667540f976..0752841d366 100644 --- a/libcxx/test/std/utilities/optional/optional.relops/equal.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.relops/equal.pass.cpp @@ -10,7 +10,7 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // -// template constexpr bool operator==(const optional& x, const optional& y); +// template constexpr bool operator==(const optional& x, const optional& y); #include #include diff --git a/libcxx/test/std/utilities/optional/optional.relops/greater_equal.pass.cpp b/libcxx/test/std/utilities/optional/optional.relops/greater_equal.pass.cpp index 0e05834c147..f475f379691 100644 --- a/libcxx/test/std/utilities/optional/optional.relops/greater_equal.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.relops/greater_equal.pass.cpp @@ -10,7 +10,7 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // -// template constexpr bool operator>= (const optional& x, const optional& y); +// template constexpr bool operator>= (const optional& x, const optional& y); #include diff --git a/libcxx/test/std/utilities/optional/optional.relops/greater_than.pass.cpp b/libcxx/test/std/utilities/optional/optional.relops/greater_than.pass.cpp index 3946a6102ba..c3f2af9323a 100644 --- a/libcxx/test/std/utilities/optional/optional.relops/greater_than.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.relops/greater_than.pass.cpp @@ -10,7 +10,7 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // -// template constexpr bool operator> (const optional& x, const optional& y); +// template constexpr bool operator> (const optional& x, const optional& y); #include diff --git a/libcxx/test/std/utilities/optional/optional.relops/less_equal.pass.cpp b/libcxx/test/std/utilities/optional/optional.relops/less_equal.pass.cpp index 5a1954154f4..35e80d3d4e5 100644 --- a/libcxx/test/std/utilities/optional/optional.relops/less_equal.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.relops/less_equal.pass.cpp @@ -10,7 +10,7 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // -// template constexpr bool operator<= (const optional& x, const optional& y); +// template constexpr bool operator<= (const optional& x, const optional& y); #include diff --git a/libcxx/test/std/utilities/optional/optional.relops/less_than.pass.cpp b/libcxx/test/std/utilities/optional/optional.relops/less_than.pass.cpp index 35956e6f4a7..1dbffbd9235 100644 --- a/libcxx/test/std/utilities/optional/optional.relops/less_than.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.relops/less_than.pass.cpp @@ -10,7 +10,7 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // -// template constexpr bool operator< (const optional& x, const optional& y); +// template constexpr bool operator< (const optional& x, const optional& y); #include diff --git a/libcxx/test/std/utilities/optional/optional.relops/not_equal.pass.cpp b/libcxx/test/std/utilities/optional/optional.relops/not_equal.pass.cpp index 1256537d6a8..12d9922a959 100644 --- a/libcxx/test/std/utilities/optional/optional.relops/not_equal.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.relops/not_equal.pass.cpp @@ -10,7 +10,7 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14 // -// template constexpr bool operator!=(const optional& x, const optional& y); +// template constexpr bool operator!=(const optional& x, const optional& y); #include #include -- cgit v1.2.3