Add missing include for VxWorks build. (#2515)

`catch_sharding.hpp` was using `std::min` without including `<algorithm>`.
This worked on most platforms, but it wasn't transitively included in
the VxWorks toolchain.
This commit is contained in:
Riom
2022-09-08 10:21:36 +02:00
committed by GitHub
parent 4adf010549
commit 32eae0ecce

View File

@ -11,6 +11,7 @@
#include <catch2/catch_session.hpp> #include <catch2/catch_session.hpp>
#include <cmath> #include <cmath>
#include <algorithm>
namespace Catch { namespace Catch {