Commit 03b3d59d by Yannick Jadoul Committed by GitHub

tests: fix CI by including <algorithm> to stop MSVC from complaining about…

tests: fix CI by including <algorithm> to stop MSVC from complaining about std::count_if in tests/test_sequences_and_iterators.cpp (#2435)
parent a2bb297b
......@@ -13,6 +13,8 @@
#include <pybind11/operators.h>
#include <pybind11/stl.h>
#include <algorithm>
template<typename T>
class NonZeroIterator {
const T* ptr_;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment