- added some #pragma warnings to i_crash.cpp to silence a warning message in Microsoft's headers.

This commit is contained in:
Christoph Oelckers 2016-02-29 10:48:51 +01:00
parent 6c37ab2310
commit 0cf9cae7f3

View file

@ -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>