summaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2017-07-19 14:49:00 +0000
committerredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2017-07-19 14:49:00 +0000
commit302e406cf150e14e9a2a7b2f5dd0002e2f7959ab (patch)
tree0fbd556808e65d28c4dff6081289f5d82c98ed82 /libstdc++-v3
parent303419eaab19f3d864c46fc34d1ec4487d30fe53 (diff)
downloadgcc-302e406cf150e14e9a2a7b2f5dd0002e2f7959ab.tar.gz
Fix indentation in libstdc++ testsuite utils
* testsuite/util/testsuite_iterators.h: Fix indentation. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@250349 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/ChangeLog2
-rw-r--r--libstdc++-v3/testsuite/util/testsuite_iterators.h12
2 files changed, 8 insertions, 6 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 325fc05d180..a6ed3c9b732 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -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>
diff --git a/libstdc++-v3/testsuite/util/testsuite_iterators.h b/libstdc++-v3/testsuite/util/testsuite_iterators.h
index 6771ae2cea6..d61b2162c14 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