Add missing include to test. NFC
authorMarshall Clow <mclow.lists@gmail.com>
Wed, 19 Dec 2018 16:39:04 +0000 (16:39 +0000)
committerMarshall Clow <mclow.lists@gmail.com>
Wed, 19 Dec 2018 16:39:04 +0000 (16:39 +0000)
llvm-svn: 349639

libcxx/test/std/algorithms/alg.nonmodifying/alg.find.end/find_end_pred.pass.cpp

index 76ac991..ac3b95f 100644 (file)
@@ -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"