aboutsummaryrefslogtreecommitdiff
path: root/libcxx/test
diff options
context:
space:
mode:
authorMarshall Clow <mclow.lists@gmail.com>2018-12-19 16:39:04 +0000
committerMarshall Clow <mclow.lists@gmail.com>2018-12-19 16:39:04 +0000
commit8d221b40a7963caf19eaedf29f0512f6a09cd994 (patch)
treedef083e22fa76076b11217ecdf052678a5ad07f4 /libcxx/test
parent641b0dcb137447d8506820fd0b34b282955523c7 (diff)
Add missing include to test. NFC
llvm-svn: 349639
Diffstat (limited to 'libcxx/test')
-rw-r--r--libcxx/test/std/algorithms/alg.nonmodifying/alg.find.end/find_end_pred.pass.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/libcxx/test/std/algorithms/alg.nonmodifying/alg.find.end/find_end_pred.pass.cpp b/libcxx/test/std/algorithms/alg.nonmodifying/alg.find.end/find_end_pred.pass.cpp
index 76ac991653eb..ac3b95fbe2a7 100644
--- a/libcxx/test/std/algorithms/alg.nonmodifying/alg.find.end/find_end_pred.pass.cpp
+++ b/libcxx/test/std/algorithms/alg.nonmodifying/alg.find.end/find_end_pred.pass.cpp
@@ -16,6 +16,7 @@
// find_end(Iter1 first1, Iter1 last1, Iter2 first2, Iter2 last2, Pred pred);
#include <algorithm>
+#include <functional>
#include <cassert>
#include "test_macros.h"