Add NOMINMAX macro for Win build to avoid using min() as a macro

This commit is contained in:
Ervin Hegedus 2025-07-20 23:05:19 +02:00
parent 534702b248
commit ba9445d566
No known key found for this signature in database
GPG Key ID: 5FA5BC3F5EC41F61

View File

@ -19,6 +19,7 @@
#include <stdio.h>
#ifdef WIN32
#define NOMINMAX
#include <Windows.h>
#endif