Fix test for C++03

llvm-svn: 311967
This commit is contained in:
Marshall Clow 2017-08-29 01:10:51 +00:00
parent 802afb4c0a
commit 589453458d
1 changed files with 4 additions and 3 deletions

View File

@ -127,11 +127,12 @@ void test_PR31166 ()
{
typedef std::pair<int, int> P;
typedef std::vector<P> V;
const V vec {{1, 0}, {2, 0}, {2, 1}, {2, 2}, {2, 3}};
P vec[5] = {P(1, 0), P(2, 0), P(2, 1), P(2, 2), P(2, 3)};
for ( int i = 0; i < 5; ++i ) {
V res = vec;
V res(vec, vec + 5);
std::inplace_merge(res.begin(), res.begin() + i, res.end(), less_by_first());
assert(res == vec);
assert(res.size() == 5);
assert(std::equal(res.begin(), res.end(), vec));
}
}