]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/tr1/6_containers/unordered_set/23465.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / tr1 / 6_containers / unordered_set / 23465.cc
index 9c169e2538ea719b5591ac38fba2902d3eb73d52..45ac74ea04c065fabf2b6b07f04869d14db0a165 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2005-2015 Free Software Foundation, Inc.
+// Copyright (C) 2005-2020 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++/23465
 void test01()
 {
-  bool test __attribute__((unused)) = true;
-
   for (float lf = 0.1; lf < 101.0; lf *= 10.0)
     for (int size = 1; size <= 6561; size *= 3)
       {
        std::tr1::unordered_set<int> us1, us2;
        typedef std::tr1::unordered_set<int>::local_iterator local_iterator;
        typedef std::tr1::unordered_set<int>::size_type      size_type;
-       
+
        us1.max_load_factor(lf);
 
        for (int i = 0; i < size; ++i)
          us1.insert(i);
-       
+
        us2 = us1;
-       
+
        VERIFY( us2.size() == us1.size() );
        VERIFY( us2.bucket_count() == us1.bucket_count() );
-       
+
        for (size_type b = 0; b < us1.bucket_count(); ++b)
          {
            size_type cnt = 0;