From 057499fdffbbe947f98170a2bbce60f1eb5f5aa8 Mon Sep 17 00:00:00 2001 From: "Mark A. Tsuchida" Date: Wed, 19 Jun 2024 17:02:41 -0500 Subject: [PATCH] Disable MSVC warning C4828 "The file contains a character starting at offset 0x____ that is illegal in the current source character set (____)." These are caused by included third-party headers that are not UTF-8. Hopefully their use of non-UTF-8 characters is limited to comments. --- buildscripts/VisualStudio/MMCommon.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildscripts/VisualStudio/MMCommon.props b/buildscripts/VisualStudio/MMCommon.props index 84d81f9b3..8cdc0883d 100644 --- a/buildscripts/VisualStudio/MMCommon.props +++ b/buildscripts/VisualStudio/MMCommon.props @@ -23,7 +23,7 @@ Level4 - 4127;4290;%(DisableSpecificWarnings) + 4127;4290;4828;%(DisableSpecificWarnings) Sync _CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) true