Suppress min/max macro's if Windows is the target

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

View File

@ -13,6 +13,14 @@
*
*/
#ifdef WIN32
#ifdef max
#undef max
#endif
#ifdef min
#undef min
#endif
#endif
#ifdef __cplusplus
#include <ctime>