]> 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 78085f940b058b706b90f4ef069dd492930f8755..1a6cbe1b659ce4fec6f8cc30beb07aba2f5685c7 100644 (file)
@@ -2,8 +2,7 @@
 
 // 2004-10-20  Benjamin Kosnik  <bkoz@redhat.com>
 //
-// Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009
-// Free Software Foundation, Inc.
+// Copyright (C) 2004-2021 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
@@ -25,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 } };