mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-23 10:07:41 +08:00
[libcxx] [test] Strip trailing whitespace, NFC.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@324959 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -32,7 +32,7 @@
|
||||
// int ib[] = {2, 4, 6, 8};
|
||||
// int ic[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
|
||||
// const int expected[] = {0, 1, 2, 2, 3, 4, 4, 6, 8};
|
||||
//
|
||||
//
|
||||
// auto it = std::merge(std::begin(ia), std::end(ia), std::begin(ib), std::end(ib), std::begin(ic));
|
||||
// return std::distance(std::begin(ic), it) == (std::size(ia) + std::size(ib))
|
||||
// && *it == 0
|
||||
|
@@ -35,8 +35,8 @@
|
||||
// int ib[] = {2, 4, 6, 8};
|
||||
// int ic[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
|
||||
// const int expected[] = {0, 1, 2, 2, 3, 4, 4, 6, 8};
|
||||
//
|
||||
// auto it = std::merge(std::begin(ia), std::end(ia),
|
||||
//
|
||||
// auto it = std::merge(std::begin(ia), std::end(ia),
|
||||
// std::begin(ib), std::end(ib),
|
||||
// std::begin(ic), [](int a, int b) {return a == b; });
|
||||
// return std::distance(std::begin(ic), it) == (std::size(ia) + std::size(ib))
|
||||
|
Reference in New Issue
Block a user