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:
Marshall Clow
2015-01-28 20:26:11 +00:00
parent 01c1c6fcc7
commit eea9d20edb
5 changed files with 29 additions and 29 deletions

View File

@@ -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, "");
}

View File

@@ -37,7 +37,7 @@ class Empty
class NoDefaultConstructor
{
NoDefaultConstructor(int) {}
NoDefaultConstructor(int) {}
};
class NotEmpty