]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/tr1/4_metaprogramming/aligned_storage/value.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / tr1 / 4_metaprogramming / aligned_storage / value.cc
index 075f2d9a31398222cb3e08877dbdc7bbecd605dd..f3969c15a0ab84732fe92d780afe6dac337fc696 100644 (file)
@@ -1,6 +1,6 @@
 // 2005-01-11  Paolo Carlini  <pcarlini@suse.de>
 //
-// Copyright (C) 2005-2013 Free Software Foundation, Inc.
+// Copyright (C) 2005-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
 
 void test01()
 {
-  bool test __attribute__((unused)) = true;
   using std::tr1::aligned_storage;
   using std::tr1::alignment_of;
   using namespace __gnu_test;
-  
+
   const std::size_t align_c = alignment_of<char>::value;
   VERIFY( (sizeof(aligned_storage<4, align_c>::type) >= 4) );
   VERIFY( (__alignof__(aligned_storage<4, align_c>::type) == align_c) );