mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
Merge pull request #73 from kariya-mitsuru/fix-find_symmetric_difference
fix find_symmetric_difference
This commit is contained in:
commit
b51e338b68
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ namespace sprout {
|
||||||
InputIterator1 last1, InputIterator2 last2, Compare comp, typename std::iterator_traits<InputIterator1>::difference_type n
|
InputIterator1 last1, InputIterator2 last2, Compare comp, typename std::iterator_traits<InputIterator1>::difference_type n
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return sprout::tuples::get<2>(current) || sprout::tuples::get<0>(current) == last1 ? current
|
return sprout::tuples::get<2>(current) || sprout::tuples::get<0>(current) == last1 || sprout::tuples::get<1>(current) == last2 ? current
|
||||||
: sprout::detail::find_symmetric_difference_impl(
|
: sprout::detail::find_symmetric_difference_impl(
|
||||||
sprout::detail::find_symmetric_difference_impl_1(
|
sprout::detail::find_symmetric_difference_impl_1(
|
||||||
current,
|
current,
|
||||||
|
|
Loading…
Reference in a new issue