]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/util/performance/assoc/timing/subscript_find_test.hpp
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / util / performance / assoc / timing / subscript_find_test.hpp
index 6415cd8ece0457c64d6d38c5c44256abc1c14329..f223ea88dda66276be6398a516cbad0ab0f5a185 100644 (file)
@@ -1,11 +1,11 @@
 // -*- C++ -*-
 
-// Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+// Copyright (C) 2005-2017 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 terms
 // of the GNU General Public License as published by the Free Software
-// Foundation; either version 2, or (at your option) any later
+// Foundation; either version 3, or (at your option) any later
 // version.
 
 // This library is distributed in the hope that it will be useful, but
 // General Public License for more details.
 
 // You should have received a copy of the GNU General Public License
-// along with this library; see the file COPYING.  If not, write to
-// the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
-// MA 02111-1307, USA.
-
-// As a special exception, you may use this file as part of a free
-// software library without restriction.  Specifically, if other files
-// instantiate templates or use macros or inline functions from this
-// file, or you compile this file and link it with other files to
-// produce an executable, this file does not by itself cause the
-// resulting executable to be covered by the GNU General Public
-// License.  This exception does not however invalidate any other
-// reasons why the executable file might be covered by the GNU General
-// Public License.
+// along with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
 
 // Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
 
@@ -51,7 +41,7 @@
 #include <common_type/assoc/string_form.hpp>
 #include <iterator>
 
-namespace pb_ds
+namespace __gnu_pbds
 {
   namespace test
   {
@@ -61,7 +51,7 @@ namespace pb_ds
       class subscript_find_functor
       {
       public:
-        subscript_find_functor(Cntnr& container,  It fnd_it_b,  It fnd_it_e) 
+        subscript_find_functor(Cntnr& container,  It fnd_it_b,  It fnd_it_e)
        : m_r_container(container), m_fnd_it_b(fnd_it_b), m_fnd_it_e(fnd_it_e)
        { }
 
@@ -86,10 +76,10 @@ namespace pb_ds
     } // namespace detail
 
     template<typename It>
-    class subscript_find_test : private pb_ds::test::detail::timing_test_base
+    class subscript_find_test : private __gnu_pbds::test::detail::timing_test_base
     {
     public:
-      subscript_find_test(It ins_b, It b, size_t ins_vn, size_t ins_vs, 
+      subscript_find_test(It ins_b, It b, size_t ins_vn, size_t ins_vs,
                          size_t ins_vm, size_t vn, size_t vs, size_t vm)
       : m_ins_b(ins_b), m_fnd_b(b), m_ins_vn(ins_vn), m_ins_vs(ins_vs),
        m_ins_vm(ins_vm), m_fnd_vn(vn), m_fnd_vs(vs), m_fnd_vm(vm)
@@ -138,17 +128,17 @@ namespace pb_ds
          It fnd_it_e = m_fnd_b;
          std::advance(fnd_it_e, fnd_size);
 
-         pb_ds::test::detail::subscript_find_functor<It, Cntnr>
+         __gnu_pbds::test::detail::subscript_find_functor<It, Cntnr>
             fn(test_container, fnd_it_b, fnd_it_e);
 
          const double res =
-            pb_ds::test::detail::timing_test_base::operator()(fn);
+            __gnu_pbds::test::detail::timing_test_base::operator()(fn);
 
          res_set_fmt.add_res(v, res / fnd_size);
        }
     }
   } // namespace test
-} // namespace pb_ds
+} // namespace __gnu_pbds
 
-#endif 
+#endif