Howard Hinnant | 94b2dd0 | 2010-08-22 00:59:46 +0000 | [diff] [blame] | 1 | //===----------------------------------------------------------------------===// |
| 2 | // |
Chandler Carruth | 57b08b0 | 2019-01-19 10:56:40 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Howard Hinnant | 94b2dd0 | 2010-08-22 00:59:46 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | // <functional> |
| 10 | |
| 11 | // greater |
| 12 | |
| 13 | #include <functional> |
| 14 | #include <type_traits> |
| 15 | #include <cassert> |
| 16 | |
Eric Fiselier | d697ee4 | 2016-06-02 03:12:44 +0000 | [diff] [blame] | 17 | #include "test_macros.h" |
Nico Weber | 0f3efc4 | 2019-08-21 22:38:38 +0000 | [diff] [blame] | 18 | #include "pointer_comparison_test_helper.h" |
Eric Fiselier | d697ee4 | 2016-06-02 03:12:44 +0000 | [diff] [blame] | 19 | |
JF Bastien | 2df59c5 | 2019-02-04 20:31:13 +0000 | [diff] [blame] | 20 | int main(int, char**) |
Howard Hinnant | 94b2dd0 | 2010-08-22 00:59:46 +0000 | [diff] [blame] | 21 | { |
| 22 | typedef std::greater<int> F; |
| 23 | const F f = F(); |
Marshall Clow | 66369c0 | 2015-01-07 20:31:06 +0000 | [diff] [blame] | 24 | static_assert((std::is_same<int, F::first_argument_type>::value), "" ); |
| 25 | static_assert((std::is_same<int, F::second_argument_type>::value), "" ); |
| 26 | static_assert((std::is_same<bool, F::result_type>::value), "" ); |
Howard Hinnant | 94b2dd0 | 2010-08-22 00:59:46 +0000 | [diff] [blame] | 27 | assert(!f(36, 36)); |
| 28 | assert(f(36, 6)); |
| 29 | assert(!f(6, 36)); |
Eric Fiselier | d697ee4 | 2016-06-02 03:12:44 +0000 | [diff] [blame] | 30 | { |
| 31 | // test total ordering of int* for greater<int*> and |
| 32 | // greater<void>. |
| 33 | do_pointer_comparison_test<int, std::greater>(); |
| 34 | } |
| 35 | #if TEST_STD_VER > 11 |
Marshall Clow | 83c08b4 | 2013-07-29 14:21:53 +0000 | [diff] [blame] | 36 | typedef std::greater<> F2; |
| 37 | const F2 f2 = F2(); |
| 38 | assert(!f2(36, 36)); |
| 39 | assert(f2(36, 6)); |
| 40 | assert(!f2(6, 36)); |
| 41 | assert( f2(36, 6.0)); |
| 42 | assert( f2(36.0, 6)); |
| 43 | assert(!f2(6, 36.0)); |
| 44 | assert(!f2(6.0, 36)); |
Marshall Clow | 3d5134dd | 2013-09-28 19:06:12 +0000 | [diff] [blame] | 45 | |
| 46 | constexpr bool foo = std::greater<int> () (36, 36); |
| 47 | static_assert ( !foo, "" ); |
| 48 | |
| 49 | constexpr bool bar = std::greater<> () (36.0, 36); |
| 50 | static_assert ( !bar, "" ); |
Marshall Clow | 83c08b4 | 2013-07-29 14:21:53 +0000 | [diff] [blame] | 51 | #endif |
JF Bastien | 2df59c5 | 2019-02-04 20:31:13 +0000 | [diff] [blame] | 52 | |
| 53 | return 0; |
Howard Hinnant | 94b2dd0 | 2010-08-22 00:59:46 +0000 | [diff] [blame] | 54 | } |