diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index d794b80684b..394fea7f224 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2008-03-20 Johannes Singler + + * include/parallel/set_operations.h: Removed superfluous + set_intersection. + 2008-03-19 Benjamin Kosnik PR libstdc++/35256 diff --git a/libstdc++-v3/include/parallel/set_operations.h b/libstdc++-v3/include/parallel/set_operations.h index 50c28d48d66..dccfbd83262 100644 --- a/libstdc++-v3/include/parallel/set_operations.h +++ b/libstdc++-v3/include/parallel/set_operations.h @@ -500,20 +500,6 @@ template(comp)); } - -template - inline OutputIterator - set_intersection(InputIterator begin1, InputIterator end1, - InputIterator begin2, InputIterator end2, - OutputIterator result) - { - typedef std::iterator_traits traits_type; - typedef typename traits_type::value_type value_type; - - return set_intersection(begin1, end1, begin2, end2, result, - std::less()); - } - template