diff options
author | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2017-05-04 01:43:58 +0000 |
---|---|---|
committer | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2017-05-04 01:43:58 +0000 |
commit | 6081edc9d08555364786407e7c0be116b1332080 (patch) | |
tree | 4b22e1374de9923dc8cdfcea7e31bd8a2ca1469d /libcxx/test/std/algorithms/alg.modifying.operations/alg.remove | |
parent | a7e1ac58c4413e2fdb70116e8b7cf38f3c183047 (diff) | |
download | bcm5719-llvm-6081edc9d08555364786407e7c0be116b1332080.tar.gz bcm5719-llvm-6081edc9d08555364786407e7c0be116b1332080.zip |
[libcxx] [test] Strip trailing whitespace. NFC.
llvm-svn: 302105
Diffstat (limited to 'libcxx/test/std/algorithms/alg.modifying.operations/alg.remove')
-rw-r--r-- | libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/remove_copy_if.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/remove_copy_if.pass.cpp b/libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/remove_copy_if.pass.cpp index 1cf2d9e8456..8532998eb08 100644 --- a/libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/remove_copy_if.pass.cpp +++ b/libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/remove_copy_if.pass.cpp @@ -30,7 +30,7 @@ test() int ia[] = {0, 1, 2, 3, 4, 2, 3, 4, 2}; const unsigned sa = sizeof(ia)/sizeof(ia[0]); int ib[sa]; - OutIter r = std::remove_copy_if(InIter(ia), InIter(ia+sa), + OutIter r = std::remove_copy_if(InIter(ia), InIter(ia+sa), OutIter(ib), equalToTwo); assert(base(r) == ib + sa-3); assert(ib[0] == 0); |