Skip to content

Commit 07c143e

Browse files
authored
Suppress C4668 warning with Windows SDK (28000) (#645)
1 parent 2021452 commit 07c143e

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

XWBTool/xwbtool.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,13 @@
5858

5959
#include "WAVFileReader.h"
6060

61+
#ifdef _MSC_VER
62+
// Off by default warnings
63+
#pragma warning(disable : 4619 4616 4668)
64+
// C4619/4616 #pragma warning warnings
65+
// C4668 not defined as a preprocessor macro
66+
#endif
67+
6168
#include <shellapi.h>
6269

6370
#define TOOL_VERSION 0

0 commit comments

Comments
 (0)