[libcxx] r284120 - Add missing include in test; NFC. Thanks to Jonathan Wakely for the report.

Marshall Clow via cfe-commits cfe-commits at lists.llvm.org
Thu Oct 13 06:21:38 PDT 2016


Author: marshall
Date: Thu Oct 13 08:21:38 2016
New Revision: 284120

URL: http://llvm.org/viewvc/llvm-project?rev=284120&view=rev
Log:
Add missing include in test; NFC. Thanks to Jonathan Wakely for the report.

Modified:
    libcxx/trunk/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp

Modified: libcxx/trunk/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp?rev=284120&r1=284119&r2=284120&view=diff
==============================================================================
--- libcxx/trunk/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp (original)
+++ libcxx/trunk/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp Thu Oct 13 08:21:38 2016
@@ -14,6 +14,7 @@
 //     is_partitioned(InputIterator first, InputIterator last, Predicate pred);
 
 #include <algorithm>
+#include <functional>
 #include <cassert>
 
 #include "test_iterators.h"




More information about the cfe-commits mailing list