From 32eae0ecce470639344b121186fb76a240de04b9 Mon Sep 17 00:00:00 2001 From: Riom <2965398+Rijom@users.noreply.github.com> Date: Thu, 8 Sep 2022 10:21:36 +0200 Subject: [PATCH] Add missing include for VxWorks build. (#2515) `catch_sharding.hpp` was using `std::min` without including ``. This worked on most platforms, but it wasn't transitively included in the VxWorks toolchain. --- src/catch2/internal/catch_sharding.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/catch2/internal/catch_sharding.hpp b/src/catch2/internal/catch_sharding.hpp index 17a206f8..5bff4b85 100644 --- a/src/catch2/internal/catch_sharding.hpp +++ b/src/catch2/internal/catch_sharding.hpp @@ -11,6 +11,7 @@ #include #include +#include namespace Catch {