Removed some tabs that snuck into the test suite. No functionality change
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@227363 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -50,19 +50,19 @@ int main()
|
||||
{
|
||||
static_assert( std::is_same<void, std::void_t<>>::value, "");
|
||||
|
||||
test1<void>();
|
||||
test1<int>();
|
||||
test1<double>();
|
||||
test1<int&>();
|
||||
test1<Class>();
|
||||
test1<Class[]>();
|
||||
test1<Class[5]>();
|
||||
|
||||
test2<void, int>();
|
||||
test2<double, int>();
|
||||
test2<int&, int>();
|
||||
test2<Class&, bool>();
|
||||
test2<void *, int&>();
|
||||
test1<void>();
|
||||
test1<int>();
|
||||
test1<double>();
|
||||
test1<int&>();
|
||||
test1<Class>();
|
||||
test1<Class[]>();
|
||||
test1<Class[5]>();
|
||||
|
||||
test2<void, int>();
|
||||
test2<double, int>();
|
||||
test2<int&, int>();
|
||||
test2<Class&, bool>();
|
||||
test2<void *, int&>();
|
||||
|
||||
static_assert( std::is_same<void, std::void_t<int, double const &, Class, volatile int[], void>>::value, "");
|
||||
}
|
||||
|
@@ -37,7 +37,7 @@ class Empty
|
||||
|
||||
class NoDefaultConstructor
|
||||
{
|
||||
NoDefaultConstructor(int) {}
|
||||
NoDefaultConstructor(int) {}
|
||||
};
|
||||
|
||||
class NotEmpty
|
||||
|
Reference in New Issue
Block a user