Remove invalid alias declaration from _Node_handle
authorJonathan Wakely <jwakely@redhat.com>
Wed, 5 Oct 2016 12:01:44 +0000 (13:01 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Wed, 5 Oct 2016 12:01:44 +0000 (13:01 +0100)
* include/bits/node_handle.h (_Node_handle): Remove invalid and unused
alias declaration.

From-SVN: r240779

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

index 20bbc5e13d68f65a5528e5e22a08b9ac582cc772..1499faf801136d18cf7ce1ab80579fcc01ac2452 100644 (file)
@@ -1,5 +1,8 @@
 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.
index 60c28838820d291bb686357bc04fe0eed35c0145..e89092bbee4be1dba1006010de9156402f68775f 100644 (file)
@@ -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&