Commit 82b6276f by Jonathan Wakely Committed by Jonathan Wakely

Remove unused std::_Iter_base class template

This class template has been unused since __gnu_debug::__base was
removed in r263786.

	* include/bits/stl_iterator_base_types.h (_Iter_base): Remove unused
	class template and partial specialization.

From-SVN: r270647
parent 846541dd
2019-04-29 Jonathan Wakely <jwakely@redhat.com> 2019-04-29 Jonathan Wakely <jwakely@redhat.com>
* include/bits/stl_iterator_base_types.h (_Iter_base): Remove unused
class template and partial specialization.
PR libstdc++/87982 PR libstdc++/87982
* include/bits/stl_algo.h (generate_n): Convert _Size parameter to * include/bits/stl_algo.h (generate_n): Convert _Size parameter to
an integral type. an integral type.
......
...@@ -207,26 +207,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -207,26 +207,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
//@} //@}
#if __cplusplus < 201103L
// If _Iterator has a base returns it otherwise _Iterator is returned
// untouched
template<typename _Iterator, bool _HasBase>
struct _Iter_base
{
typedef _Iterator iterator_type;
static iterator_type _S_base(_Iterator __it)
{ return __it; }
};
template<typename _Iterator>
struct _Iter_base<_Iterator, true>
{
typedef typename _Iterator::iterator_type iterator_type;
static iterator_type _S_base(_Iterator __it)
{ return __it.base(); }
};
#endif
#if __cplusplus >= 201103L #if __cplusplus >= 201103L
template<typename _InIter> template<typename _InIter>
using _RequireInputIter = typename using _RequireInputIter = typename
......
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