From 03b3d59d10b2b8fa67c4049fd3e505b7b9322dfe Mon Sep 17 00:00:00 2001 From: Yannick Jadoul Date: Wed, 26 Aug 2020 05:51:07 +0200 Subject: [PATCH] tests: fix CI by including to stop MSVC from complaining about std::count_if in tests/test_sequences_and_iterators.cpp (#2435) --- tests/test_sequences_and_iterators.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_sequences_and_iterators.cpp b/tests/test_sequences_and_iterators.cpp index 05f999bb..1ce04510 100644 --- a/tests/test_sequences_and_iterators.cpp +++ b/tests/test_sequences_and_iterators.cpp @@ -13,6 +13,8 @@ #include #include +#include + template class NonZeroIterator { const T* ptr_;