diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-06-01 04:36:25 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-06-01 04:36:25 +0300 |
commit | 686e80db741ba06330daf2a6569ec847a3c9d997 (patch) | |
tree | b5aadfa9242491004767c4ac70702f6bab62afdc /utils | |
parent | README update (diff) | |
download | winapi-debug-686e80db741ba06330daf2a6569ec847a3c9d997.tar.gz winapi-debug-686e80db741ba06330daf2a6569ec847a3c9d997.zip |
get rid of third-party warnings
Diffstat (limited to 'utils')
-rw-r--r-- | utils/addr2name.cpp | 2 | ||||
-rw-r--r-- | utils/command_line.hpp | 2 | ||||
-rw-r--r-- | utils/enum_symbols.cpp | 2 | ||||
-rw-r--r-- | utils/name2addr.cpp | 2 | ||||
-rw-r--r-- | utils/pdb_descr.hpp | 2 |
5 files changed, 10 insertions, 0 deletions
diff --git a/utils/addr2name.cpp b/utils/addr2name.cpp index b2f0a51..76e781d 100644 --- a/utils/addr2name.cpp +++ b/utils/addr2name.cpp @@ -8,7 +8,9 @@ #include "pdb/all.hpp" +#pragma warning(push, 0) #include <boost/program_options.hpp> +#pragma warning(pop) #include <exception> #include <iostream> diff --git a/utils/command_line.hpp b/utils/command_line.hpp index 79fb673..83cf8d6 100644 --- a/utils/command_line.hpp +++ b/utils/command_line.hpp @@ -5,8 +5,10 @@ #pragma once +#pragma warning(push, 0) #include <boost/filesystem.hpp> #include <boost/program_options.hpp> +#pragma warning(pop) #include <exception> #include <iostream> diff --git a/utils/enum_symbols.cpp b/utils/enum_symbols.cpp index d7fd417..848c523 100644 --- a/utils/enum_symbols.cpp +++ b/utils/enum_symbols.cpp @@ -8,7 +8,9 @@ #include "pdb/all.hpp" +#pragma warning(push, 0) #include <boost/program_options.hpp> +#pragma warning(pop) #include <exception> #include <iostream> diff --git a/utils/name2addr.cpp b/utils/name2addr.cpp index 543cd7b..f177c86 100644 --- a/utils/name2addr.cpp +++ b/utils/name2addr.cpp @@ -8,7 +8,9 @@ #include "pdb/all.hpp" +#pragma warning(push, 0) #include <boost/program_options.hpp> +#pragma warning(pop) #include <exception> #include <iostream> diff --git a/utils/pdb_descr.hpp b/utils/pdb_descr.hpp index c8a6112..58261a0 100644 --- a/utils/pdb_descr.hpp +++ b/utils/pdb_descr.hpp @@ -7,7 +7,9 @@ #include "pdb/all.hpp" +#pragma warning(push, 0) #include <boost/program_options.hpp> +#pragma warning(pop) #include <sstream> #include <string> |