From ad55cec472c5fa4a4f106c0e85de39c276bbee71 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Thu, 13 Jan 2022 22:15:44 +0100 Subject: [PATCH] Add missing include file for std::max, std::min This fixes a build issue with VS 2019 Version 16.11.9 and platform toolset v141. Signed-off-by: Stefan Weil --- src/ccmain/thresholder.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ccmain/thresholder.cpp b/src/ccmain/thresholder.cpp index bbb1fd8b..f8da90cc 100644 --- a/src/ccmain/thresholder.cpp +++ b/src/ccmain/thresholder.cpp @@ -27,7 +27,8 @@ #include #include // for api->GetIntVariable() -#include // for uint32_t +#include // for std::max, std::min +#include // for uint32_t #include #include