From ba9445d5660d8d8461ea0f99aaa3bf2d5cbb17a4 Mon Sep 17 00:00:00 2001 From: Ervin Hegedus Date: Sun, 20 Jul 2025 23:05:19 +0200 Subject: [PATCH] Add NOMINMAX macro for Win build to avoid using min() as a macro --- src/utils/shared_files.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/shared_files.h b/src/utils/shared_files.h index fcc78c98..b4256014 100644 --- a/src/utils/shared_files.h +++ b/src/utils/shared_files.h @@ -19,6 +19,7 @@ #include #ifdef WIN32 +#define NOMINMAX #include #endif