diff options
author | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2018-04-12 23:56:22 +0000 |
---|---|---|
committer | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2018-04-12 23:56:22 +0000 |
commit | ad9545eb305b2284daccf797a618e56613dd5921 (patch) | |
tree | da5afb1655361d26afe7f2b353a1b4e568ff9808 /libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/unique_pred.pass.cpp | |
parent | 9e5283f27f753a226100a0878b3be5b44f603f19 (diff) | |
download | bcm5719-llvm-ad9545eb305b2284daccf797a618e56613dd5921.tar.gz bcm5719-llvm-ad9545eb305b2284daccf797a618e56613dd5921.zip |
[libcxx] [test] Fix whitespace, NFC.
test/std almost always uses spaces; now it is entirely tab-free.
llvm-svn: 329978
Diffstat (limited to 'libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/unique_pred.pass.cpp')
-rw-r--r-- | libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/unique_pred.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/unique_pred.pass.cpp b/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/unique_pred.pass.cpp index 539d226e812..2936a4e66f5 100644 --- a/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/unique_pred.pass.cpp +++ b/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/unique_pred.pass.cpp @@ -26,7 +26,7 @@ TEST_CONSTEXPR bool test_constexpr() { int ia[] = {0, 1, 1, 3, 4}; const int expected[] = {0, 1, 3, 4}; - const size_t N = 4; + const size_t N = 4; auto it = std::unique(std::begin(ia), std::end(ia), [](int a, int b) {return a == b; }); return it == (std::begin(ia) + N) |