* testsuite/util/testsuite_iterators.h: Fix indentation.
Committed to trunk.
commit 91f442428d2d7acc583aa437fa5e835fe2044af0 Author: Jonathan Wakely <jwak...@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 --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