diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2018-01-15 19:32:32 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2018-01-15 19:32:32 +0000 |
commit | 404ee020f017bc3fffaadcdbc50f8f49a3674046 (patch) | |
tree | 3f7596ec3e7449b4fc2b7ab85d127343e4440d29 /libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp | |
parent | 8694428e365648723f5519af0a6818eb24ecb990 (diff) | |
download | bcm5719-llvm-404ee020f017bc3fffaadcdbc50f8f49a3674046.tar.gz bcm5719-llvm-404ee020f017bc3fffaadcdbc50f8f49a3674046.zip |
Some of the tests from earlier today had 'int' as the return type when it should have been 'bool'. Fix that. It doesn't change the behavior of any of the tests, but it's more accurate.
llvm-svn: 322505
Diffstat (limited to 'libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp')
-rw-r--r-- | libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp b/libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp index eb9be71c2b5..b68b28de47c 100644 --- a/libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp +++ b/libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp @@ -27,7 +27,7 @@ struct is_odd { }; #if TEST_STD_VER > 17 -TEST_CONSTEXPR int test_constexpr() { +TEST_CONSTEXPR bool test_constexpr() { int ia[] = {1, 3, 5, 2, 4, 6}; int ib[] = {1, 2, 3, 4, 5, 6}; return std::is_partitioned(std::begin(ia), std::end(ia), is_odd()) |