Commit d72d690a by Jonathan Wakely Committed by Jonathan Wakely

Remove invalid alias declaration from _Node_handle

	* include/bits/node_handle.h (_Node_handle): Remove invalid and unused
	alias declaration.

From-SVN: r240779
parent 78ec9c15
2016-10-05 Jonathan Wakely <jwakely@redhat.com>
* include/bits/node_handle.h (_Node_handle): Remove invalid and unused
alias declaration.
PR libstdc++/70564
* include/experimental/functional (_Not_fn): Remove.
(not_fn): Use std::_Not_fn.
......
......@@ -182,10 +182,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
private:
using _AllocTraits = allocator_traits<_NodeAlloc>;
using _PtrTraits = pointer_traits<typename _NodeAlloc::pointer>;
_Node_handle(typename _AllocTraits::pointer __ptr,
const _NodeAlloc& __alloc)
const _NodeAlloc& __alloc)
: _Node_handle_common<_Value, _NodeAlloc>(__ptr, __alloc)
{
if (__ptr)
......@@ -261,7 +259,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
using _AllocTraits = allocator_traits<_NodeAlloc>;
_Node_handle(typename _AllocTraits::pointer __ptr,
const _NodeAlloc& __alloc)
const _NodeAlloc& __alloc)
: _Node_handle_common<_Value, _NodeAlloc>(__ptr, __alloc) { }
const value_type&
......
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