]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/tr1/4_metaprogramming/integral_constant/true_false_value.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / tr1 / 4_metaprogramming / integral_constant / true_false_value.cc
index 5308cad7e0638faf26158a2b01a8d15cd110c209..0cae593d6e868df84fc33e2d67cf161891f05859 100644 (file)
@@ -1,6 +1,6 @@
 // 2004-12-03  Paolo Carlini  <pcarlini@suse.de>
 //
-// Copyright (C) 2004-2014 Free Software Foundation, Inc.
+// Copyright (C) 2004-2023 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::true_type;
   using std::tr1::false_type;
 
   VERIFY( true_type::value == true );
   VERIFY( false_type::value == false );
   VERIFY( true_type::type::value == true );
-  VERIFY( false_type::type::value == false );  
+  VERIFY( false_type::type::value == false );
 }
 
 int main()