2010-08-22 08:59:46 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2010-11-17 06:09:02 +08:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-08-22 08:59:46 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <functional>
|
|
|
|
|
|
|
|
// logical_or
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
typedef std::logical_or<int> F;
|
|
|
|
const F f = F();
|
2015-01-08 04:31:06 +08:00
|
|
|
static_assert((std::is_same<int, F::first_argument_type>::value), "" );
|
|
|
|
static_assert((std::is_same<int, F::second_argument_type>::value), "" );
|
|
|
|
static_assert((std::is_same<bool, F::result_type>::value), "" );
|
2010-08-22 08:59:46 +08:00
|
|
|
assert(f(36, 36));
|
|
|
|
assert(f(36, 0));
|
|
|
|
assert(f(0, 36));
|
|
|
|
assert(!f(0, 0));
|
2013-07-29 22:21:53 +08:00
|
|
|
#if _LIBCPP_STD_VER > 11
|
|
|
|
typedef std::logical_or<> F2;
|
|
|
|
const F2 f2 = F2();
|
|
|
|
assert( f2(36, 36));
|
|
|
|
assert( f2(36, 36L));
|
|
|
|
assert( f2(36L, 36));
|
|
|
|
assert( f2(36, 0));
|
|
|
|
assert( f2(0, 36));
|
|
|
|
assert( f2(36, 0L));
|
|
|
|
assert( f2(0, 36L));
|
|
|
|
assert(!f2(0, 0));
|
|
|
|
assert(!f2(0, 0L));
|
|
|
|
assert(!f2(0L, 0));
|
2013-09-29 03:06:12 +08:00
|
|
|
|
|
|
|
constexpr bool foo = std::logical_or<int> () (36, 36);
|
|
|
|
static_assert ( foo, "" );
|
|
|
|
|
|
|
|
constexpr bool bar = std::logical_or<> () (36.0, 36);
|
|
|
|
static_assert ( bar, "" );
|
2013-07-29 22:21:53 +08:00
|
|
|
#endif
|
2010-08-22 08:59:46 +08:00
|
|
|
}
|