Fix (even more) test failures in Boost.Algorithm

[SVN r77076]
This commit is contained in:
Marshall Clow
2012-02-20 15:22:04 +00:00
parent eb8291e0aa
commit dfaea65083
3 changed files with 4 additions and 5 deletions

View File

@ -50,7 +50,7 @@ partition_copy ( InputIterator first, InputIterator last,
*out_true++ = *first;
else
*out_false++ = *first;
return std::make_pair<OutputIterator1, OutputIterator2> ( out_true, out_false );
return std::pair<OutputIterator1, OutputIterator2> ( out_true, out_false );
}
#endif