aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-07-23 00:28:56 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-07-23 00:28:56 +0300
commit344d43f1638e736df29338bcca7a05bfaa1b237c (patch)
treeaa8286ee9e13adb6215eb51bbf9c147591866b2b
parentcxx: add a compiler workaround (diff)
downloadaes-tools-344d43f1638e736df29338bcca7a05bfaa1b237c.tar.gz
aes-tools-344d43f1638e736df29338bcca7a05bfaa1b237c.zip
cxx: disable DbgHelp.h warnings
-rw-r--r--cxx/include/aesnixx/debug.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/cxx/include/aesnixx/debug.hpp b/cxx/include/aesnixx/debug.hpp
index f87942d..bb21f74 100644
--- a/cxx/include/aesnixx/debug.hpp
+++ b/cxx/include/aesnixx/debug.hpp
@@ -10,7 +10,10 @@
#ifdef WIN32
#include <Windows.h>
+#pragma warning(push)
+#pragma warning(disable: 4091)
#include <DbgHelp.h>
+#pragma warning(pop)
#pragma comment(lib, "dbghelp.lib")
#endif