[libcxx] r227363 - Removed some tabs that snuck into the test suite. No functionality change

Marshall Clow mclow.lists at gmail.com
Wed Jan 28 12:26:11 PST 2015


Author: marshall
Date: Wed Jan 28 14:26:11 2015
New Revision: 227363

URL: http://llvm.org/viewvc/llvm-project?rev=227363&view=rev
Log:
Removed some tabs that snuck into the test suite. No functionality change

Modified:
    libcxx/trunk/test/std/algorithms/alg.modifying.operations/alg.swap/swap_ranges.pass.cpp
    libcxx/trunk/test/std/algorithms/alg.nonmodifying/mismatch/mismatch.pass.cpp
    libcxx/trunk/test/std/algorithms/alg.nonmodifying/mismatch/mismatch_pred.pass.cpp
    libcxx/trunk/test/std/utilities/meta/meta.unary.prop.query/void_t.pass.cpp
    libcxx/trunk/test/std/utilities/meta/meta.unary/meta.unary.prop/is_default_constructible.pass.cpp

Modified: libcxx/trunk/test/std/algorithms/alg.modifying.operations/alg.swap/swap_ranges.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/algorithms/alg.modifying.operations/alg.swap/swap_ranges.pass.cpp?rev=227363&r1=227362&r2=227363&view=diff
==============================================================================
--- libcxx/trunk/test/std/algorithms/alg.modifying.operations/alg.swap/swap_ranges.pass.cpp (original)
+++ libcxx/trunk/test/std/algorithms/alg.modifying.operations/alg.swap/swap_ranges.pass.cpp Wed Jan 28 14:26:11 2015
@@ -155,5 +155,5 @@ int main()
 
 #endif  // _LIBCPP_HAS_NO_RVALUE_REFERENCES
 
-	test2();
+    test2();
 }

Modified: libcxx/trunk/test/std/algorithms/alg.nonmodifying/mismatch/mismatch.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/algorithms/alg.nonmodifying/mismatch/mismatch.pass.cpp?rev=227363&r1=227362&r2=227363&view=diff
==============================================================================
--- libcxx/trunk/test/std/algorithms/alg.nonmodifying/mismatch/mismatch.pass.cpp (original)
+++ libcxx/trunk/test/std/algorithms/alg.nonmodifying/mismatch/mismatch.pass.cpp Wed Jan 28 14:26:11 2015
@@ -30,24 +30,24 @@ int main()
     int ib[] = {0, 1, 2, 3, 0, 1, 2, 3};
     const unsigned sb = sizeof(ib)/sizeof(ib[0]);
 
-	typedef input_iterator<const int*> II;
-	typedef random_access_iterator<const int*>  RAI;
+    typedef input_iterator<const int*> II;
+    typedef random_access_iterator<const int*>  RAI;
 
     assert(std::mismatch(II(ia), II(ia + sa), II(ib))
-    		== (std::pair<II, II>(II(ia+3), II(ib+3))));
+            == (std::pair<II, II>(II(ia+3), II(ib+3))));
 
     assert(std::mismatch(RAI(ia), RAI(ia + sa), RAI(ib))
-    		== (std::pair<RAI, RAI>(RAI(ia+3), RAI(ib+3))));
+            == (std::pair<RAI, RAI>(RAI(ia+3), RAI(ib+3))));
 
 #ifdef HAS_FOUR_ITERATOR_VERSION
     assert(std::mismatch(II(ia), II(ia + sa), II(ib), II(ib+sb))
-    		== (std::pair<II, II>(II(ia+3), II(ib+3))));
+            == (std::pair<II, II>(II(ia+3), II(ib+3))));
 
     assert(std::mismatch(RAI(ia), RAI(ia + sa), RAI(ib), RAI(ib+sb))
-    		== (std::pair<RAI, RAI>(RAI(ia+3), RAI(ib+3))));
+            == (std::pair<RAI, RAI>(RAI(ia+3), RAI(ib+3))));
 
 
     assert(std::mismatch(II(ia), II(ia + sa), II(ib), II(ib+2))
-    		== (std::pair<II, II>(II(ia+2), II(ib+2))));
+            == (std::pair<II, II>(II(ia+2), II(ib+2))));
 #endif
 }

Modified: libcxx/trunk/test/std/algorithms/alg.nonmodifying/mismatch/mismatch_pred.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/algorithms/alg.nonmodifying/mismatch/mismatch_pred.pass.cpp?rev=227363&r1=227362&r2=227363&view=diff
==============================================================================
--- libcxx/trunk/test/std/algorithms/alg.nonmodifying/mismatch/mismatch_pred.pass.cpp (original)
+++ libcxx/trunk/test/std/algorithms/alg.nonmodifying/mismatch/mismatch_pred.pass.cpp Wed Jan 28 14:26:11 2015
@@ -33,9 +33,9 @@ int main()
     int ib[] = {0, 1, 2, 3, 0, 1, 2, 3};
     const unsigned sb = sizeof(ib)/sizeof(ib[0]);
     
-	typedef input_iterator<const int*> II;
-	typedef random_access_iterator<const int*>  RAI;
-	typedef std::equal_to<int> EQ;
+    typedef input_iterator<const int*> II;
+    typedef random_access_iterator<const int*>  RAI;
+    typedef std::equal_to<int> EQ;
 
     assert(std::mismatch(II(ia), II(ia + sa), II(ib), EQ())
             == (std::pair<II, II>(II(ia+3), II(ib+3))));
@@ -45,9 +45,9 @@ int main()
     binary_counting_predicate<EQ, int> bcp((EQ()));
     assert(std::mismatch(RAI(ia), RAI(ia + sa), RAI(ib), std::ref(bcp))
             == (std::pair<RAI, RAI>(RAI(ia+3), RAI(ib+3))));
-	assert(bcp.count() > 0 && bcp.count() < sa);
-	bcp.reset();
-		
+    assert(bcp.count() > 0 && bcp.count() < sa);
+    bcp.reset();
+        
 #ifdef HAS_FOUR_ITERATOR_VERSION
     assert(std::mismatch(II(ia), II(ia + sa), II(ib), II(ib + sb), EQ())
             == (std::pair<II, II>(II(ia+3), II(ib+3))));
@@ -56,7 +56,7 @@ int main()
 
     assert(std::mismatch(II(ia), II(ia + sa), II(ib), II(ib + sb), std::ref(bcp))
             == (std::pair<II, II>(II(ia+3), II(ib+3))));
-	assert(bcp.count() > 0 && bcp.count() < std::min(sa, sb));
+    assert(bcp.count() > 0 && bcp.count() < std::min(sa, sb));
 #endif
 
     assert(std::mismatch(ia, ia + sa, ib, EQ()) ==

Modified: libcxx/trunk/test/std/utilities/meta/meta.unary.prop.query/void_t.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/utilities/meta/meta.unary.prop.query/void_t.pass.cpp?rev=227363&r1=227362&r2=227363&view=diff
==============================================================================
--- libcxx/trunk/test/std/utilities/meta/meta.unary.prop.query/void_t.pass.cpp (original)
+++ libcxx/trunk/test/std/utilities/meta/meta.unary.prop.query/void_t.pass.cpp Wed Jan 28 14:26:11 2015
@@ -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, "");
 }

Modified: libcxx/trunk/test/std/utilities/meta/meta.unary/meta.unary.prop/is_default_constructible.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/utilities/meta/meta.unary/meta.unary.prop/is_default_constructible.pass.cpp?rev=227363&r1=227362&r2=227363&view=diff
==============================================================================
--- libcxx/trunk/test/std/utilities/meta/meta.unary/meta.unary.prop/is_default_constructible.pass.cpp (original)
+++ libcxx/trunk/test/std/utilities/meta/meta.unary/meta.unary.prop/is_default_constructible.pass.cpp Wed Jan 28 14:26:11 2015
@@ -37,7 +37,7 @@ class Empty
 
 class NoDefaultConstructor
 {
-	NoDefaultConstructor(int) {}
+    NoDefaultConstructor(int) {}
 };
 
 class NotEmpty





More information about the cfe-commits mailing list