From 7580f3f8e3f609e13828cfb3443133390ecabdb4 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Fri, 6 Oct 2023 22:42:25 -0500 Subject: [PATCH] Remove _CRT_SECURE_NO_WARNINGS now that we use safe string functions everywhere --- src/Platform.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Platform.h b/src/Platform.h index 500081b..9131328 100644 --- a/src/Platform.h +++ b/src/Platform.h @@ -5,8 +5,7 @@ // that are incompatible with Winsock errors. #define _CRT_NO_POSIX_ERROR_CODES -// Ignore CRT warnings about sprintf(), memcpy(), etc. -#define _CRT_SECURE_NO_WARNINGS 1 +// Ignore CRT warnings about POSIX names #define _CRT_NONSTDC_NO_DEPRECATE 1 #endif