Include what the new code uses

The Windows build stopped on test_kdtree.cpp: it calls std::iota without
including <numeric>, which libstdc++ happens to pull in anyway. Added
there, and the same for <limits> and <algorithm>/<cmath> where the
recent changes rely on them being included by something else.
This commit is contained in:
ExPikaPaka
2026-09-23 16:16:46 +02:00
parent fc312fbb31
commit a8b44278e6
3 changed files with 4 additions and 0 deletions
+1
View File
@@ -1,5 +1,6 @@
#include <catch2/catch_all.hpp>
#include <numeric>
#include <random>
#include <vector>