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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

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