stl_map.h (map<>::insert(iterator, const value_type&): Uglify parameter.
authorPaolo Carlini <pcarlini@suse.de>
Tue, 3 Apr 2007 08:50:09 +0000 (08:50 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Tue, 3 Apr 2007 08:50:09 +0000 (08:50 +0000)
2007-04-03  Paolo Carlini  <pcarlini@suse.de>

* include/bits/stl_map.h (map<>::insert(iterator, const value_type&):
Uglify parameter.

From-SVN: r123453

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/stl_map.h

index 9a25a519eb1a7d0971ed133ea1661f6b04650415..a2f10f4654f3a47a873e5662a7aeaf1f48ab5dbd 100644 (file)
@@ -1,3 +1,8 @@
+2007-04-03  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/bits/stl_map.h (map<>::insert(iterator, const value_type&):
+       Uglify parameter.
+
 2007-04-03  Paolo Carlini  <pcarlini@suse.de>
 
        PR libstdc++/31440
index d04b3767a6981cc41997c2f14959670425d25ec5..e30eac282390d17fbd2c60747dd64eb7e2bf8c9e 100644 (file)
@@ -1,6 +1,7 @@
 // Map implementation -*- C++ -*-
 
-// Copyright (C) 2001, 2002, 2004, 2005, 2006 Free Software Foundation, Inc.
+// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007
+// 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
@@ -394,7 +395,7 @@ _GLIBCXX_BEGIN_NESTED_NAMESPACE(std, _GLIBCXX_STD)
        *
        *  Insertion requires logarithmic time.
        */
-      std::pair<iterator,bool>
+      std::pair<iterator, bool>
       insert(const value_type& __x)
       { return _M_t._M_insert_unique(__x); }
 
@@ -422,8 +423,8 @@ _GLIBCXX_BEGIN_NESTED_NAMESPACE(std, _GLIBCXX_STD)
        *  Insertion requires logarithmic time (if the hint is not taken).
        */
       iterator
-      insert(iterator position, const value_type& __x)
-      { return _M_t._M_insert_unique_(position, __x); }
+      insert(iterator __position, const value_type& __x)
+      { return _M_t._M_insert_unique_(__position, __x); }
 
       /**
        *  @brief Template function that attemps to insert a range of elements.