]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/tr1/6_containers/unordered_set/erase/24061-set.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / tr1 / 6_containers / unordered_set / erase / 24061-set.cc
index 5657ba34c918428d89d7dc390b1da435c454d5b4..fb7a0da47f67472b2b722f9a369cec4d0fcf34cc 100644 (file)
@@ -1,6 +1,6 @@
-// 2005-10-08  Paolo Carlini  <pcarlini@suse.de> 
+// 2005-10-08  Paolo Carlini  <pcarlini@suse.de>
 //
-// Copyright (C) 2005-2016 Free Software Foundation, Inc.
+// Copyright (C) 2005-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
 // libstdc++/24061
 void test01()
 {
-  bool test __attribute__((unused)) = true;
-  
   typedef std::tr1::unordered_set<std::string> Set;
   typedef Set::iterator       iterator;
   typedef Set::const_iterator const_iterator;
 
   Set s1;
-  
+
   s1.insert("all the love in the world");
   s1.insert("you know what you are?");
   s1.insert("the collector");
@@ -96,7 +94,7 @@ void test01()
   VERIFY( it13 == s1.end() );
   VERIFY( it13 == s1.begin() );
 }
-  
+
 int main()
 {
   test01();