Cleanup: Fix warning in blenlib with MSVC

Some versions of the Windows SDK headers have a dbghelp.h that will emit
C4091 warnings, repress them just this once, since the warn can be helpful
in other places.
This commit is contained in:
Ray molenkamp 2019-05-27 08:57:39 -06:00
parent 29a29699f7
commit 7f1513efc5
1 changed files with 3 additions and 0 deletions

View File

@ -33,7 +33,10 @@
#if defined(WIN32)
# include <intrin.h>
# include <windows.h>
# pragma warning(push)
# pragma warning(disable : 4091)
# include <dbghelp.h>
# pragma warning(pop)
#else
# include <execinfo.h>
# include <unistd.h>