diff options
author | Casey Carter <Casey@Carter.net> | 2017-04-17 20:15:16 +0000 |
---|---|---|
committer | Casey Carter <Casey@Carter.net> | 2017-04-17 20:15:16 +0000 |
commit | e3bdfe639cf4ad5f180730d8bec31eba251d349d (patch) | |
tree | 06e7a9418360a1d93c57e6a71dae1533f8ce842d /libcxx/test/std/utilities/optional/optional.comp_with_t/greater.pass.cpp | |
parent | d7523283a7198d0e919f8ada0eeadddef3ccbaaa (diff) | |
download | bcm5719-llvm-e3bdfe639cf4ad5f180730d8bec31eba251d349d.tar.gz bcm5719-llvm-e3bdfe639cf4ad5f180730d8bec31eba251d349d.zip |
[optional] Update synopsis for LWG2934
(comment-only change)
llvm-svn: 300488
Diffstat (limited to 'libcxx/test/std/utilities/optional/optional.comp_with_t/greater.pass.cpp')
-rw-r--r-- | libcxx/test/std/utilities/optional/optional.comp_with_t/greater.pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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 // <optional> -// template <class T> constexpr bool operator>(const optional<T>& x, const T& v); -// template <class T> constexpr bool operator>(const T& v, const optional<T>& x); +// template <class T, class U> constexpr bool operator>(const optional<T>& x, const U& v); +// template <class T, class U> constexpr bool operator>(const U& v, const optional<T>& x); #include <optional> |