Fix indentation in libstdc++ testsuite utils

* testsuite/util/testsuite_iterators.h: Fix indentation.

From-SVN: r250349
This commit is contained in:
Jonathan Wakely 2017-07-19 15:49:00 +01:00 committed by Jonathan Wakely
parent 4a18c06666
commit 4e66b02bc1
2 changed files with 8 additions and 6 deletions

View 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>

View 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