MSVC: ignore warning c4828 The file contains a character that is illegal.

The only place this warning is coming from is from comments in headers of 3rd party libs. we can safely repress this warning for now.
This commit is contained in:
Ray molenkamp 2018-03-17 12:45:27 -06:00
parent 64fbd50e4c
commit 7427e3e501
Notes: blender-bot 2023-04-14 09:18:04 +02:00
Referenced by issue #53952, MSVC 2017 migration.
1 changed files with 1 additions and 0 deletions

View File

@ -1514,6 +1514,7 @@ elseif(CMAKE_C_COMPILER_ID MATCHES "MSVC")
"/wd4267" # conversion from 'size_t' to 'type', possible loss of data
"/wd4305" # truncation from 'type1' to 'type2'
"/wd4800" # forcing value to bool 'true' or 'false'
"/wd4828" # The file contains a character that is illegal
# errors:
"/we4013" # 'function' undefined; assuming extern returning int
"/we4133" # incompatible pointer types