]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix indentation in libstdc++ testsuite utils
authorJonathan Wakely <jwakely@redhat.com>
Wed, 19 Jul 2017 14:49:00 +0000 (15:49 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Wed, 19 Jul 2017 14:49:00 +0000 (15:49 +0100)
* testsuite/util/testsuite_iterators.h: Fix indentation.

From-SVN: r250349

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/util/testsuite_iterators.h

index 325fc05d180a8a15c184e8f2424318c7691b22a8..a6ed3c9b732f8ed1362d940c723cd084b6f4bb31 100644 (file)
@@ -1,5 +1,7 @@
 2017-07-19  Jonathan Wakely  <jwakely@redhat.com>
 
+       * testsuite/util/testsuite_iterators.h: Fix indentation.
+
        * testsuite/27_io/basic_filebuf/sgetn/char/81395.cc: Add dg-require.
 
 2017-07-18  Jonathan Wakely  <jwakely@redhat.com>
index 6771ae2cea64391621a945faaad9ce4f8504bb28..d61b2162c141604fd3fecad03d67120f836ab68c 100644 (file)
@@ -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