summaryrefslogtreecommitdiff
path: root/libcxx
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
commit46dd470daac29fc6a93fd253fb50f003e8151609 (patch)
treec3c30a774c253a0cad62948580d53df1eb5f2391 /libcxx
parentadd0a86a627e9156385e7ad73dc4b236fd9e6cd2 (diff)
Add missing include to test. NFC
Diffstat (limited to 'libcxx')
-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 76ac991653e..ac3b95fbe2a 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"