diff options
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; } |