From 7fe04114524aa4e6e2e1a8bba08e2605237a461c Mon Sep 17 00:00:00 2001 From: hyzboy Date: Thu, 24 Oct 2019 18:04:28 +0800 Subject: [PATCH] =?UTF-8?q?MSVC=E4=B8=8B=E5=A2=9E=E5=8A=A0warning=20disabl?= =?UTF-8?q?e=EF=BC=8C=E4=BB=A5=E5=87=8F=E5=B0=91MGL=E8=AD=A6=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- inc/hgl/math/Vector.h | 1 + 1 file changed, 1 insertion(+) diff --git a/inc/hgl/math/Vector.h b/inc/hgl/math/Vector.h index 6ad9854..5603c6d 100644 --- a/inc/hgl/math/Vector.h +++ b/inc/hgl/math/Vector.h @@ -3,6 +3,7 @@ #ifdef _MSC_VER #pragma warning(disable:4244) // double -> int 精度丢失警告 +#pragma warning(disable:4996) // sprintf may be unsafe, Consider using sprintf_s instead #endif//_MSC_VER #include