diff options
author | Louis Dionne <ldionne@apple.com> | 2019-07-18 20:22:28 +0000 |
---|---|---|
committer | Louis Dionne <ldionne@apple.com> | 2019-07-18 20:22:28 +0000 |
commit | 01963cec9b3fbc8ec98da449180d95be224dfadd (patch) | |
tree | eb8fa0aff7173862b588f43301e80985513dd02e /pstl/test/std/algorithms/alg.nonmodifying/find.pass.cpp | |
parent | 96f497081351e01f70af275abbf98847d25a5158 (diff) | |
download | bcm5719-llvm-01963cec9b3fbc8ec98da449180d95be224dfadd.tar.gz bcm5719-llvm-01963cec9b3fbc8ec98da449180d95be224dfadd.zip |
[NFC][pstl] Run clang-format on the sources, including the tests
llvm-svn: 366492
Diffstat (limited to 'pstl/test/std/algorithms/alg.nonmodifying/find.pass.cpp')
-rw-r--r-- | pstl/test/std/algorithms/alg.nonmodifying/find.pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pstl/test/std/algorithms/alg.nonmodifying/find.pass.cpp b/pstl/test/std/algorithms/alg.nonmodifying/find.pass.cpp index d6bcadb7bdd..f5a5d94f5e4 100644 --- a/pstl/test/std/algorithms/alg.nonmodifying/find.pass.cpp +++ b/pstl/test/std/algorithms/alg.nonmodifying/find.pass.cpp @@ -21,7 +21,7 @@ using namespace TestUtils; struct test_find { -#if _PSTL_ICC_17_VC141_TEST_SIMD_LAMBDA_DEBUG_32_BROKEN || \ +#if _PSTL_ICC_17_VC141_TEST_SIMD_LAMBDA_DEBUG_32_BROKEN || \ _PSTL_ICC_16_VC14_TEST_SIMD_LAMBDA_DEBUG_32_BROKEN //dummy specialization by policy type, in case of broken configuration template <typename Iterator, typename Value> void @@ -85,7 +85,7 @@ main() { // Note that the "hit" and "miss" functions here avoid overflow issues. test<Number>(Weird(42, OddTag()), [](int32_t) { return Number(42, OddTag()); }, // hit - [](int32_t j) { return Number(j == 42 ? 0 : j, OddTag()); }); // miss + [](int32_t j) { return Number(j == 42 ? 0 : j, OddTag()); }); // miss // Test with value that is equal to two different bit patterns (-0.0 and 0.0) test<float32_t>(-0.0, [](int32_t j) { return j & 1 ? 0.0 : -0.0; }, // hit |