mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- added some #pragma warnings to i_crash.cpp to silence a warning message in Microsoft's headers.
This commit is contained in:
parent
6c37ab2310
commit
0cf9cae7f3
1 changed files with 6 additions and 0 deletions
|
@ -45,7 +45,13 @@
|
|||
#include <winternl.h>
|
||||
#endif
|
||||
#ifndef __GNUC__
|
||||
#if _MSC_VER
|
||||
#pragma warning(disable:4091) // this silences a warning for a bogus definition in the Windows 8.1 SDK.
|
||||
#endif
|
||||
#include <dbghelp.h>
|
||||
#if _MSC_VER
|
||||
#pragma warning(default:4091)
|
||||
#endif
|
||||
#endif
|
||||
#include <commctrl.h>
|
||||
#include <commdlg.h>
|
||||
|
|
Loading…
Reference in a new issue