diff options
| author | Marshall Clow <mclow.lists@gmail.com> | 2016-10-13 13:21:38 +0000 |
|---|---|---|
| committer | Marshall Clow <mclow.lists@gmail.com> | 2016-10-13 13:21:38 +0000 |
| commit | bb1db210a8c46708b77704edf26d9d3a7b77f453 (patch) | |
| tree | f85efcbdcc2b16b4b62ff75539611daaad11d0f5 /libcxx/test/std/algorithms/alg.modifying.operations | |
| parent | 253640e18dc816f9e1c71ad0db4015f0b869e081 (diff) | |
| download | bcm5719-llvm-bb1db210a8c46708b77704edf26d9d3a7b77f453.tar.gz bcm5719-llvm-bb1db210a8c46708b77704edf26d9d3a7b77f453.zip | |
Add missing include in test; NFC. Thanks to Jonathan Wakely for the report.
llvm-svn: 284120
Diffstat (limited to 'libcxx/test/std/algorithms/alg.modifying.operations')
| -rw-r--r-- | libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp | 1 |
1 files changed, 1 insertions, 0 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 aa23d19a8a3..df9e350f36c 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 @@ -14,6 +14,7 @@ // is_partitioned(InputIterator first, InputIterator last, Predicate pred); #include <algorithm> +#include <functional> #include <cassert> #include "test_iterators.h" |

