Commit ff0164b4 by Jonathan Wakely Committed by Jonathan Wakely

* include/bits/alloc_traits.h (__alloc_rebind): Change parameter name.

From-SVN: r222686
parent ce1b114a
2015-05-01 Jonathan Wakely <jwakely@redhat.com> 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. * acinclude.m4 (GLIBCXX_ENABLE_FILESYSTEM_TS): Disable for solaris.
* configure: Regenerate. * configure: Regenerate.
......
...@@ -72,8 +72,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -72,8 +72,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
typedef _Alloc<_Tp, _Args...> __type; typedef _Alloc<_Tp, _Args...> __type;
}; };
template<typename _Ptr, typename _Tp> template<typename _Alloc, typename _Tp>
using __alloc_rebind = typename __alloctr_rebind<_Ptr, _Tp>::__type; using __alloc_rebind = typename __alloctr_rebind<_Alloc, _Tp>::__type;
/** /**
* @brief Uniform interface to all allocator types. * @brief Uniform interface to all allocator types.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment