* include/bits/alloc_traits.h (__alloc_rebind): Change parameter name.
authorJonathan Wakely <jwakely@redhat.com>
Fri, 1 May 2015 15:22:49 +0000 (16:22 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Fri, 1 May 2015 15:22:49 +0000 (16:22 +0100)
From-SVN: r222686

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

index fa5bcb6332def291b03c25a6d48173a4b0c64cc4..cb60e3416ad77402a187d6775538d980f258aed6 100644 (file)
@@ -1,5 +1,7 @@
 2015-05-01  Jonathan Wakely  <jwakely@redhat.com>
 
+       * include/bits/alloc_traits.h (__alloc_rebind): Change parameter name.
+
        * acinclude.m4 (GLIBCXX_ENABLE_FILESYSTEM_TS): Disable for solaris.
        * configure: Regenerate.
 
index d6c42ece5dd5cbe0dfac8b5ae22b86486a7e053f..12c6c12f187b6f45bbb9ea705d550d9edbe753f4 100644 (file)
@@ -72,8 +72,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
       typedef _Alloc<_Tp, _Args...> __type;
     };
 
-  template<typename _Ptr, typename _Tp>
-    using __alloc_rebind = typename __alloctr_rebind<_Ptr, _Tp>::__type;
+  template<typename _Alloc, typename _Tp>
+    using __alloc_rebind = typename __alloctr_rebind<_Alloc, _Tp>::__type;
 
   /**
    * @brief  Uniform interface to all allocator types.