From ff04a5678cc1b72bfb5eb9269c80889d36e7ad04 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Wed, 19 Dec 2018 16:39:04 +0000 Subject: [PATCH] Add missing include to test. NFC git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@349639 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../alg.nonmodifying/alg.find.end/find_end_pred.pass.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/std/algorithms/alg.nonmodifying/alg.find.end/find_end_pred.pass.cpp b/test/std/algorithms/alg.nonmodifying/alg.find.end/find_end_pred.pass.cpp index 76ac99165..ac3b95fbe 100644 --- a/test/std/algorithms/alg.nonmodifying/alg.find.end/find_end_pred.pass.cpp +++ b/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 +#include #include #include "test_macros.h"