diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2016-01-12 14:51:04 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2016-01-12 14:51:04 +0000 |
commit | 8d113d430f4aee2ad49ba680dd07b453e44e2442 (patch) | |
tree | 74e188990fb20b9030ce70958f64260a19e69b4b /libcxx/test/std/containers/sequences/vector.bool/find.pass.cpp | |
parent | 00021429d4b89d2f1d8833ea8cc4688107ab5262 (diff) | |
download | bcm5719-llvm-8d113d430f4aee2ad49ba680dd07b453e44e2442.tar.gz bcm5719-llvm-8d113d430f4aee2ad49ba680dd07b453e44e2442.zip |
Add a bunch of missing includes in the test suite to make it more portable. Fixes bugs #26120 and #26121. Thanks to Jonathan Wakely for the reports and the patches.
llvm-svn: 257474
Diffstat (limited to 'libcxx/test/std/containers/sequences/vector.bool/find.pass.cpp')
-rw-r--r-- | libcxx/test/std/containers/sequences/vector.bool/find.pass.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcxx/test/std/containers/sequences/vector.bool/find.pass.cpp b/libcxx/test/std/containers/sequences/vector.bool/find.pass.cpp index 75567a9b7bb..a4b5537d294 100644 --- a/libcxx/test/std/containers/sequences/vector.bool/find.pass.cpp +++ b/libcxx/test/std/containers/sequences/vector.bool/find.pass.cpp @@ -15,6 +15,7 @@ // http://llvm.org/bugs/show_bug.cgi?id=16816 #include <vector> +#include <algorithm> #include <cassert> int main() |