Commit 4e66b02b by Jonathan Wakely Committed by Jonathan Wakely

Fix indentation in libstdc++ testsuite utils

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

From-SVN: r250349
parent 4a18c066
2017-07-19 Jonathan Wakely <jwakely@redhat.com> 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. * testsuite/27_io/basic_filebuf/sgetn/char/81395.cc: Add dg-require.
2017-07-18 Jonathan Wakely <jwakely@redhat.com> 2017-07-18 Jonathan Wakely <jwakely@redhat.com>
......
...@@ -539,14 +539,14 @@ namespace __gnu_test ...@@ -539,14 +539,14 @@ namespace __gnu_test
struct test_container struct test_container
{ {
typename ItType<T>::ContainerType bounds; 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 #if __cplusplus >= 201103L
template<std::size_t N> template<std::size_t N>
explicit explicit
test_container(T (&arr)[N]) : test_container(arr, arr+N) test_container(T (&arr)[N]) : test_container(arr, arr+N)
{ } { }
#endif #endif
ItType<T> ItType<T>
...@@ -574,6 +574,6 @@ namespace __gnu_test ...@@ -574,6 +574,6 @@ namespace __gnu_test
ItType<T> ItType<T>
end() end()
{ return it(bounds.last); } { return it(bounds.last); }
}; };
} }
#endif #endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment