]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/tr1/6_containers/unordered_map/insert/24061-map.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / tr1 / 6_containers / unordered_map / insert / 24061-map.cc
index a6b7efd8b75a0b84f506bd8f7945a253bca9afcf..73eaa229f1b4a0ddd8b402492e424d55bd30b0f9 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_map<std::string, int> Map;
   typedef Map::iterator       iterator;
   typedef Map::const_iterator const_iterator;
   typedef Map::value_type     value_type;
 
   Map m1;
-  
+
   iterator it1 = m1.insert(m1.begin(),
                           value_type("all the love in the world", 1));
   VERIFY( m1.size() == 1 );
   VERIFY( *it1 == value_type("all the love in the world", 1) );
-  
+
   const_iterator cit1(it1);
   const_iterator cit2 = m1.insert(cit1,
                                  value_type("you know what you are?", 2));
@@ -52,7 +50,7 @@ void test01()
   VERIFY( it2 == it1 );
   VERIFY( *it2 == value_type("all the love in the world", 1) );
 }
-  
+
 int main()
 {
   test01();