[libcxx] [test] Strip trailing whitespace.
Fixes D27786. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@290922 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -19,7 +19,7 @@ namespace ex = std::experimental;
|
|||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
using hasFoo = typename T::Foo;
|
using hasFoo = typename T::Foo;
|
||||||
|
|
||||||
struct yesFoo {
|
struct yesFoo {
|
||||||
using Foo = int;
|
using Foo = int;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ namespace ex = std::experimental;
|
|||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
using callFoo = decltype(std::declval<T&>().Foo());
|
using callFoo = decltype(std::declval<T&>().Foo());
|
||||||
|
|
||||||
struct yesFoo {
|
struct yesFoo {
|
||||||
int Foo() { return 0; }
|
int Foo() { return 0; }
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ namespace ex = std::experimental;
|
|||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
using copy_assign_t = decltype(std::declval<T&>() = std::declval<T const &>());
|
using copy_assign_t = decltype(std::declval<T&>() = std::declval<T const &>());
|
||||||
|
|
||||||
struct not_assignable {
|
struct not_assignable {
|
||||||
not_assignable & operator=(const not_assignable&) = delete;
|
not_assignable & operator=(const not_assignable&) = delete;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ namespace ex = std::experimental;
|
|||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
using callFoo = decltype(std::declval<T&>().Foo());
|
using callFoo = decltype(std::declval<T&>().Foo());
|
||||||
|
|
||||||
struct yesFoo {
|
struct yesFoo {
|
||||||
int Foo() { return 0; }
|
int Foo() { return 0; }
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ namespace ex = std::experimental;
|
|||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
using callFoo = decltype(std::declval<T&>().Foo());
|
using callFoo = decltype(std::declval<T&>().Foo());
|
||||||
|
|
||||||
struct yesFoo {
|
struct yesFoo {
|
||||||
int Foo() { return 0; }
|
int Foo() { return 0; }
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user