From 69deefde16f1a9b9972359d1c284c48a2fd26345 Mon Sep 17 00:00:00 2001 From: Chuck Walbourn Date: Sat, 13 Jun 2026 22:35:02 -0700 Subject: [PATCH] Suppress C4668 warning with Windows SDK (28000) --- XWBTool/xwbtool.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/XWBTool/xwbtool.cpp b/XWBTool/xwbtool.cpp index fa74c9de..0b602b2b 100644 --- a/XWBTool/xwbtool.cpp +++ b/XWBTool/xwbtool.cpp @@ -58,6 +58,13 @@ #include "WAVFileReader.h" +#ifdef _MSC_VER +// Off by default warnings +#pragma warning(disable : 4619 4616 4668) +// C4619/4616 #pragma warning warnings +// C4668 not defined as a preprocessor macro +#endif + #include #define TOOL_VERSION 0