From ea65485feee80ea3bc5e15d1075e8924bfc1cf20 Mon Sep 17 00:00:00 2001 From: Riom <2965398+Rijom@users.noreply.github.com> Date: Wed, 7 Sep 2022 10:49:44 +0200 Subject: [PATCH] Add missing include for VxWorks build. std::min is defined in algorithm provides std::min. It appears to be transitively included for most platforms. For VxWorks however this explicit include is required. --- 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 17a206f850..5bff4b856d 100644 --- a/src/catch2/internal/catch_sharding.hpp +++ b/src/catch2/internal/catch_sharding.hpp @@ -11,6 +11,7 @@ #include #include +#include namespace Catch {