diff mbox

Fix indentation in libstdc++ testsuite utils

Message ID 20170719144923.GA8164@redhat.com
State New
Headers show

Commit Message

Jonathan Wakely July 19, 2017, 2:49 p.m. UTC
* testsuite/util/testsuite_iterators.h: Fix indentation.

Committed to trunk.
commit 91f442428d2d7acc583aa437fa5e835fe2044af0
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Wed Jul 19 15:47:11 2017 +0100

    Fix indentation in libstdc++ testsuite utils
    
    	* testsuite/util/testsuite_iterators.h: Fix indentation.
diff mbox

Patch

diff --git a/libstdc++-v3/testsuite/util/testsuite_iterators.h b/libstdc++-v3/testsuite/util/testsuite_iterators.h
index 6771ae2..d61b216 100644
--- a/libstdc++-v3/testsuite/util/testsuite_iterators.h
+++ b/libstdc++-v3/testsuite/util/testsuite_iterators.h
@@ -539,14 +539,14 @@  namespace __gnu_test
   struct test_container
   {
     typename ItType<T>::ContainerType bounds;
-    test_container(T* _first, T* _last):bounds(_first, _last)
+    test_container(T* _first, T* _last) : bounds(_first, _last)
     { }
 
 #if __cplusplus >= 201103L
-      template<std::size_t N>
-	explicit
-	test_container(T (&arr)[N]) : test_container(arr, arr+N)
-	{ }
+    template<std::size_t N>
+      explicit
+      test_container(T (&arr)[N]) : test_container(arr, arr+N)
+      { }
 #endif
 
     ItType<T>
@@ -574,6 +574,6 @@  namespace __gnu_test
     ItType<T>
     end()
     { return it(bounds.last); }
-   };
+  };
 }
 #endif