* include/bits/alloc_traits.h (__alloc_rebind): Change parameter name.
From-SVN: r222686
This commit is contained in:
parent
ce1b114a9c
commit
ff0164b48b
2 changed files with 4 additions and 2 deletions
|
@ -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.
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue