]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/util/common_type/assoc/detail/list_update_policy_string_form.hpp
Update copyright years in libstdc++-v3/
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / util / common_type / assoc / detail / list_update_policy_string_form.hpp
index d8f9e977aec0af1810200e960940117f182a369d..a004c0deebf3d4b97b2d1bfe381369bfabf98dc5 100644 (file)
@@ -1,11 +1,11 @@
 // -*- C++ -*-
 
-// Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+// Copyright (C) 2005-2014 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/template_policy.hpp>
 #include <io/xml.hpp>
 
-namespace pb_ds
+namespace __gnu_pbds
 {
 
   namespace test
@@ -64,42 +54,36 @@ namespace pb_ds
       struct lu_policy_string_form;
 
       template<>
-      struct lu_policy_string_form<
-       move_to_front_lu_policy_t_>
+      struct lu_policy_string_form<lu_move_to_front_policy_t_>
       {
        static std::string
         name()
-       {
-         return ("mtf_");
-       }
+       { return ("mtf_"); }
 
        static std::string
         desc()
        {
-         return (make_xml_tag(            "Update_Policy", "value", "move_to_front_lu_policy"));
+         return make_xml_tag("Update_Policy", "value", 
+                             "lu_move_to_front_policy");
        }
       };
 
-      template<typename Allocator, typename Allocator::size_type Max_Count>
-      struct lu_policy_string_form<
-       counter_lu_policy_t_<
-        Allocator,
-        Max_Count> >
+      template<typename _Alloc, typename _Alloc::size_type Max_Count>
+      struct lu_policy_string_form<lu_counter_policy_t_<_Alloc, Max_Count> >
       {
        static std::string
         name()
        {
          std::ostringstream ret;
-
          ret << "cnt_" << Max_Count << "_";
-
          return (ret.str());
        }
 
        static std::string
         desc()
        {
-         return (make_xml_tag(            "Update_Policy", "value", "counter_lu_policy", "Max_Count", Max_Count));
+         return (make_xml_tag("Update_Policy", "value", "lu_counter_policy", 
+                              "Max_Count", Max_Count));
        }
       };
 
@@ -107,7 +91,7 @@ namespace pb_ds
 
   } // namespace test
 
-} // namespace pb_ds
+} // namespace __gnu_pbds
 
 #endif // #ifndef PB_DS_LU_POLICY_STRING_FORM_HPP