Commit 8894d2ba by Johannes Singler Committed by Johannes Singler

set_operations.h: Removed superfluous set_intersection.

2008-03-20  Johannes Singler  <singler@ira.uka.de>

        * include/parallel/set_operations.h: Removed superfluous
        set_intersection.

From-SVN: r133391
parent 8a57e48f
2008-03-20 Johannes Singler <singler@ira.uka.de>
* include/parallel/set_operations.h: Removed superfluous
set_intersection.
2008-03-19 Benjamin Kosnik <bkoz@redhat.com> 2008-03-19 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/35256 PR libstdc++/35256
......
...@@ -500,20 +500,6 @@ template<typename InputIterator, ...@@ -500,20 +500,6 @@ template<typename InputIterator,
intersection_func<InputIterator, OutputIterator, Comparator>(comp)); intersection_func<InputIterator, OutputIterator, Comparator>(comp));
} }
template<typename InputIterator, typename OutputIterator>
inline OutputIterator
set_intersection(InputIterator begin1, InputIterator end1,
InputIterator begin2, InputIterator end2,
OutputIterator result)
{
typedef std::iterator_traits<InputIterator> traits_type;
typedef typename traits_type::value_type value_type;
return set_intersection(begin1, end1, begin2, end2, result,
std::less<value_type>());
}
template<typename InputIterator, template<typename InputIterator,
typename OutputIterator, typename OutputIterator,
typename Comparator> typename Comparator>
......
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