1
0
mirror of https://github.com/microsoft/DirectXMath synced 2024-09-18 22:29:53 +00:00

Warning suppression for VS 2022 17.4

This commit is contained in:
walbourn 2022-11-15 11:44:37 -08:00
parent d36af572ab
commit c4866d19ab

View File

@ -8,9 +8,10 @@
//-------------------------------------------------------------------------------------
#ifdef _MSC_VER
#pragma warning( disable : 4619 4456 )
#pragma warning( disable : 4619 4456 5264)
// C4619 #pragma warning warnings
// C4456 declaration hides previous local declaration
// C5264 'const' variable is not used
#endif
#ifdef __clang__