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>
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>
ItType<T>
end()
{ return it(bounds.last); }
- };
+ };
}
#endif