Fixing whitespace problems
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@111767 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1 +1,31 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <functional>
|
||||
|
||||
// template<cReturnable S, ClassType T>
|
||||
// const_mem_fun_t<S,T>
|
||||
// mem_fun(S (T::*f)() const);
|
||||
|
||||
#include <functional>
|
||||
#include <cassert>
|
||||
|
||||
struct A
|
||||
{
|
||||
char a1() {return 5;}
|
||||
short a2(int i) {return short(i+1);}
|
||||
int a3() const {return 1;}
|
||||
double a4(unsigned i) const {return i-1;}
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
const A a = A();
|
||||
assert(std::mem_fun(&A::a3)(&a) == 1);
|
||||
}
|
||||
|
@@ -1 +1,31 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <functional>
|
||||
|
||||
// template<Returnable S, ClassType T, CopyConstructible A>
|
||||
// const_mem_fun1_t<S,T,A>
|
||||
// mem_fun(S (T::*f)(A) const);
|
||||
|
||||
#include <functional>
|
||||
#include <cassert>
|
||||
|
||||
struct A
|
||||
{
|
||||
char a1() {return 5;}
|
||||
short a2(int i) {return short(i+1);}
|
||||
int a3() const {return 1;}
|
||||
double a4(unsigned i) const {return i-1;}
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
const A a = A();
|
||||
assert(std::mem_fun(&A::a4)(&a, 6) == 5);
|
||||
}
|
||||
|
@@ -1 +1,33 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <functional>
|
||||
|
||||
// const_mem_fun1_ref_t
|
||||
|
||||
#include <functional>
|
||||
#include <type_traits>
|
||||
#include <cassert>
|
||||
|
||||
struct A
|
||||
{
|
||||
char a1() {return 5;}
|
||||
short a2(int i) {return short(i+1);}
|
||||
int a3() const {return 1;}
|
||||
double a4(unsigned i) const {return i-1;}
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
typedef std::const_mem_fun1_ref_t<double, A, unsigned> F;
|
||||
static_assert((std::is_base_of<std::binary_function<A, unsigned, double>, F>::value), "");
|
||||
const F f(&A::a4);
|
||||
const A a = A();
|
||||
assert(f(a, 6) == 5);
|
||||
}
|
||||
|
@@ -1 +1,33 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <functional>
|
||||
|
||||
// const_mem_fun1_t
|
||||
|
||||
#include <functional>
|
||||
#include <type_traits>
|
||||
#include <cassert>
|
||||
|
||||
struct A
|
||||
{
|
||||
char a1() {return 5;}
|
||||
short a2(int i) {return short(i+1);}
|
||||
int a3() const {return 1;}
|
||||
double a4(unsigned i) const {return i-1;}
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
typedef std::const_mem_fun1_t<double, A, unsigned> F;
|
||||
static_assert((std::is_base_of<std::binary_function<const A*, unsigned, double>, F>::value), "");
|
||||
const F f(&A::a4);
|
||||
const A a = A();
|
||||
assert(f(&a, 6) == 5);
|
||||
}
|
||||
|
@@ -1 +1,31 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <functional>
|
||||
|
||||
// template<Returnable S, ClassType T>
|
||||
// const_mem_fun_ref_t<S,T>
|
||||
// mem_fun_ref(S (T::*f)() const);
|
||||
|
||||
#include <functional>
|
||||
#include <cassert>
|
||||
|
||||
struct A
|
||||
{
|
||||
char a1() {return 5;}
|
||||
short a2(int i) {return short(i+1);}
|
||||
int a3() const {return 1;}
|
||||
double a4(unsigned i) const {return i-1;}
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
const A a = A();
|
||||
assert(std::mem_fun_ref(&A::a3)(a) == 1);
|
||||
}
|
||||
|
@@ -1 +1,31 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <functional>
|
||||
|
||||
// template<Returnable S, ClassType T, CopyConstructible A>
|
||||
// const_mem_fun1_ref_t<S,T,A>
|
||||
// mem_fun_ref(S (T::*f)(A) const);
|
||||
|
||||
#include <functional>
|
||||
#include <cassert>
|
||||
|
||||
struct A
|
||||
{
|
||||
char a1() {return 5;}
|
||||
short a2(int i) {return short(i+1);}
|
||||
int a3() const {return 1;}
|
||||
double a4(unsigned i) const {return i-1;}
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
const A a = A();
|
||||
assert(std::mem_fun_ref(&A::a4)(a, 6) == 5);
|
||||
}
|
||||
|
@@ -1 +1,33 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <functional>
|
||||
|
||||
// const_mem_fun_ref_t
|
||||
|
||||
#include <functional>
|
||||
#include <type_traits>
|
||||
#include <cassert>
|
||||
|
||||
struct A
|
||||
{
|
||||
char a1() {return 5;}
|
||||
short a2(int i) {return short(i+1);}
|
||||
int a3() const {return 1;}
|
||||
double a4(unsigned i) const {return i-1;}
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
typedef std::const_mem_fun_ref_t<int, A> F;
|
||||
static_assert((std::is_base_of<std::unary_function<A, int>, F>::value), "");
|
||||
const F f(&A::a3);
|
||||
const A a = A();
|
||||
assert(f(a) == 1);
|
||||
}
|
||||
|
@@ -1 +1,33 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <functional>
|
||||
|
||||
// const_mem_fun_t
|
||||
|
||||
#include <functional>
|
||||
#include <type_traits>
|
||||
#include <cassert>
|
||||
|
||||
struct A
|
||||
{
|
||||
char a1() {return 5;}
|
||||
short a2(int i) {return short(i+1);}
|
||||
int a3() const {return 1;}
|
||||
double a4(unsigned i) const {return i-1;}
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
typedef std::const_mem_fun_t<int, A> F;
|
||||
static_assert((std::is_base_of<std::unary_function<const A*, int>, F>::value), "");
|
||||
const F f(&A::a3);
|
||||
const A a = A();
|
||||
assert(f(&a) == 1);
|
||||
}
|
||||
|
@@ -1 +1,31 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <functional>
|
||||
|
||||
// template<Returnable S, ClassType T>
|
||||
// mem_fun_t<S,T>
|
||||
// mem_fun(S (T::*f)());
|
||||
|
||||
#include <functional>
|
||||
#include <cassert>
|
||||
|
||||
struct A
|
||||
{
|
||||
char a1() {return 5;}
|
||||
short a2(int i) {return short(i+1);}
|
||||
int a3() const {return 1;}
|
||||
double a4(unsigned i) const {return i-1;}
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
A a;
|
||||
assert(std::mem_fun(&A::a1)(&a) == 5);
|
||||
}
|
||||
|
@@ -1 +1,31 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <functional>
|
||||
|
||||
// template<Returnable S, ClassType T, CopyConstructible A>
|
||||
// mem_fun1_t<S,T,A>
|
||||
// mem_fun(S (T::*f)(A));
|
||||
|
||||
#include <functional>
|
||||
#include <cassert>
|
||||
|
||||
struct A
|
||||
{
|
||||
char a1() {return 5;}
|
||||
short a2(int i) {return short(i+1);}
|
||||
int a3() const {return 1;}
|
||||
double a4(unsigned i) const {return i-1;}
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
A a;
|
||||
assert(std::mem_fun(&A::a2)(&a, 5) == 6);
|
||||
}
|
||||
|
@@ -1 +1,33 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <functional>
|
||||
|
||||
// mem_fun1_ref_t
|
||||
|
||||
#include <functional>
|
||||
#include <type_traits>
|
||||
#include <cassert>
|
||||
|
||||
struct A
|
||||
{
|
||||
char a1() {return 5;}
|
||||
short a2(int i) {return short(i+1);}
|
||||
int a3() const {return 1;}
|
||||
double a4(unsigned i) const {return i-1;}
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
typedef std::mem_fun1_ref_t<short, A, int> F;
|
||||
static_assert((std::is_base_of<std::binary_function<A, int, short>, F>::value), "");
|
||||
const F f(&A::a2);
|
||||
A a;
|
||||
assert(f(a, 5) == 6);
|
||||
}
|
||||
|
@@ -1 +1,33 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <functional>
|
||||
|
||||
// mem_fun1_t
|
||||
|
||||
#include <functional>
|
||||
#include <type_traits>
|
||||
#include <cassert>
|
||||
|
||||
struct A
|
||||
{
|
||||
char a1() {return 5;}
|
||||
short a2(int i) {return short(i+1);}
|
||||
int a3() const {return 1;}
|
||||
double a4(unsigned i) const {return i-1;}
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
typedef std::mem_fun1_t<short, A, int> F;
|
||||
static_assert((std::is_base_of<std::binary_function<A*, int, short>, F>::value), "");
|
||||
const F f(&A::a2);
|
||||
A a;
|
||||
assert(f(&a, 5) == 6);
|
||||
}
|
||||
|
@@ -1 +1,31 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <functional>
|
||||
|
||||
// template<Returnable S, ClassType T>
|
||||
// mem_fun_ref_t<S,T>
|
||||
// mem_fun_ref(S (T::*f)());
|
||||
|
||||
#include <functional>
|
||||
#include <cassert>
|
||||
|
||||
struct A
|
||||
{
|
||||
char a1() {return 5;}
|
||||
short a2(int i) {return short(i+1);}
|
||||
int a3() const {return 1;}
|
||||
double a4(unsigned i) const {return i-1;}
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
A a;
|
||||
assert(std::mem_fun_ref(&A::a1)(a) == 5);
|
||||
}
|
||||
|
@@ -1 +1,31 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <functional>
|
||||
|
||||
// template<Returnable S, ClassType T, CopyConstructible A>
|
||||
// mem_fun1_ref_t<S,T,A>
|
||||
// mem_fun_ref(S (T::*f)(A));
|
||||
|
||||
#include <functional>
|
||||
#include <cassert>
|
||||
|
||||
struct A
|
||||
{
|
||||
char a1() {return 5;}
|
||||
short a2(int i) {return short(i+1);}
|
||||
int a3() const {return 1;}
|
||||
double a4(unsigned i) const {return i-1;}
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
A a;
|
||||
assert(std::mem_fun_ref(&A::a2)(a, 5) == 6);
|
||||
}
|
||||
|
@@ -1 +1,33 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <functional>
|
||||
|
||||
// mem_fun_ref_t
|
||||
|
||||
#include <functional>
|
||||
#include <type_traits>
|
||||
#include <cassert>
|
||||
|
||||
struct A
|
||||
{
|
||||
char a1() {return 5;}
|
||||
short a2(int i) {return short(i+1);}
|
||||
int a3() const {return 1;}
|
||||
double a4(unsigned i) const {return i-1;}
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
typedef std::mem_fun_ref_t<char, A> F;
|
||||
static_assert((std::is_base_of<std::unary_function<A, char>, F>::value), "");
|
||||
const F f(&A::a1);
|
||||
A a;
|
||||
assert(f(a) == 5);
|
||||
}
|
||||
|
@@ -1 +1,33 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <functional>
|
||||
|
||||
// mem_fun_t
|
||||
|
||||
#include <functional>
|
||||
#include <type_traits>
|
||||
#include <cassert>
|
||||
|
||||
struct A
|
||||
{
|
||||
char a1() {return 5;}
|
||||
short a2(int i) {return short(i+1);}
|
||||
int a3() const {return 1;}
|
||||
double a4(unsigned i) const {return i-1;}
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
typedef std::mem_fun_t<char, A> F;
|
||||
static_assert((std::is_base_of<std::unary_function<A*, char>, F>::value), "");
|
||||
const F f(&A::a1);
|
||||
A a;
|
||||
assert(f(&a) == 5);
|
||||
}
|
||||
|
Reference in New Issue
Block a user