]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/tr1/6_containers/array/cons/aggregate_initialization.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / tr1 / 6_containers / array / cons / aggregate_initialization.cc
index 361533908d64567fac248b5a329a5166acf7f8b8..89e1c4cb2ff05a438cf2dcc06c36a656240c53a0 100644 (file)
@@ -2,7 +2,7 @@
 
 // 2004-10-20  Benjamin Kosnik  <bkoz@redhat.com>
 //
-// Copyright (C) 2004-2015 Free Software Foundation, Inc.
+// Copyright (C) 2004-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the
@@ -24,8 +24,8 @@
 #include <tr1/array>
 
 void
-test01() 
-{ 
+test01()
+{
   typedef std::tr1::array<int, 5> array_type;
 
   array_type a = { { 0, 1, 2, 3, 4 } };