diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-07-23 00:28:56 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-07-23 00:28:56 +0300 |
commit | 344d43f1638e736df29338bcca7a05bfaa1b237c (patch) | |
tree | aa8286ee9e13adb6215eb51bbf9c147591866b2b /cxx | |
parent | cxx: add a compiler workaround (diff) | |
download | aes-tools-344d43f1638e736df29338bcca7a05bfaa1b237c.tar.gz aes-tools-344d43f1638e736df29338bcca7a05bfaa1b237c.zip |
cxx: disable DbgHelp.h warnings
Diffstat (limited to 'cxx')
-rw-r--r-- | cxx/include/aesnixx/debug.hpp | 3 |
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 |