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
+2
View File
@@ -1,3 +1,5 @@
#include <algorithm>
#include <cmath>
#include <limits>
#include <numeric>
#include <unordered_map>
+1
View File
@@ -8,6 +8,7 @@
#include <boost/log/trivial.hpp>
#include <random>
#include <algorithm>
#include <limits>
#include <queue>
#include "libslic3r/AABBTreeLines.hpp"
+1
View File
@@ -1,5 +1,6 @@
#include <catch2/catch_all.hpp>
#include <numeric>
#include <random>
#include <vector>