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.modifying.operations/replace.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.modifying.operations/replace.pass.cpp')
-rw-r--r-- | pstl/test/std/algorithms/alg.modifying.operations/replace.pass.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pstl/test/std/algorithms/alg.modifying.operations/replace.pass.cpp b/pstl/test/std/algorithms/alg.modifying.operations/replace.pass.cpp index 963ff1214ee..d42dae76ebd 100644 --- a/pstl/test/std/algorithms/alg.modifying.operations/replace.pass.cpp +++ b/pstl/test/std/algorithms/alg.modifying.operations/replace.pass.cpp @@ -23,7 +23,7 @@ struct copy_int { int32_t value; int32_t copied_times = 0; - constexpr explicit copy_int(int32_t val = 0) : value(val) { } + constexpr explicit copy_int(int32_t val = 0) : value(val) {} constexpr copy_int& operator=(const copy_int& other) @@ -82,8 +82,7 @@ struct test_one_policy } template <typename T, typename Iterator1> - bool - check(Iterator1, Iterator1) + bool check(Iterator1, Iterator1) { return true; } |