Skip to content

Commit

Permalink
xrCore: suppress C4091 in DbgHelp.h.
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocaster committed Jan 15, 2016
1 parent 816fca9 commit d9f3f3e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/xrCore/xrDebug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
#include "xrDebug.h"
#include "os_clipboard.h"
#include "Debug/dxerr.h"
#pragma warning(push)
#pragma warning(disable:4091) // 'typedef ': ignored on left of '' when no variable is declared
#include "Debug/StackTrace.h"
#include "Debug/MiniDump.h"

#pragma warning(pop)
#include <malloc.h>
#include <direct.h>

Expand All @@ -29,8 +31,6 @@ static BOOL bException = FALSE;
#include <exception>
#endif

#include <dbghelp.h> // MiniDump flags

#ifdef USE_BUG_TRAP
#include <BugTrap/source/Client/BugTrap.h>
#pragma comment(lib, "BugTrap.lib")
Expand Down

0 comments on commit d9f3f3e

Please sign in to comment.