From: Johannes Singler Date: Thu, 20 Mar 2008 17:14:05 +0000 (+0000) Subject: set_operations.h: Removed superfluous set_intersection. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8894d2ba3895c47c52362137d11b1a687a694a62;p=gcc.git set_operations.h: Removed superfluous set_intersection. 2008-03-20 Johannes Singler * include/parallel/set_operations.h: Removed superfluous set_intersection. From-SVN: r133391 --- 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