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

From-SVN: r222686
This commit is contained in:
Jonathan Wakely 2015-05-01 16:22:49 +01:00 committed by Jonathan Wakely
parent ce1b114a9c
commit ff0164b48b
2 changed files with 4 additions and 2 deletions

View 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.

View 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.