mirror of
https://github.com/boostorg/algorithm.git
synced 2025-10-27 13:51:44 +01:00
Fix (even more) test failures in Boost.Algorithm
[SVN r77076]
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user