aboutsummaryrefslogtreecommitdiff
path: root/src/client/windows/handler/exception_handler.h
diff options
context:
space:
mode:
authormmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e>2006-10-27 19:47:21 +0000
committermmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e>2006-10-27 19:47:21 +0000
commit12a5245bfe93d4a0ccb692afefc4ecf1435d97f4 (patch)
treec16d76aaa579b5f3cde80be2de3f01448d07f396 /src/client/windows/handler/exception_handler.h
parentAdd set_dump_path method to ExceptionHandler (#37). Patch by Ted Mielczarek. (diff)
downloadbreakpad-12a5245bfe93d4a0ccb692afefc4ecf1435d97f4.tar.xz
Disable exception handling warnings in Windows client code (#38).
Patch by Ted Mielczarek. r=me http://groups.google.com/group/airbag-dev/browse_thread/thread/133814673f75d5fa git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@56 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/windows/handler/exception_handler.h')
-rw-r--r--src/client/windows/handler/exception_handler.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/client/windows/handler/exception_handler.h b/src/client/windows/handler/exception_handler.h
index 71360dbc..9f7f14d0 100644
--- a/src/client/windows/handler/exception_handler.h
+++ b/src/client/windows/handler/exception_handler.h
@@ -62,6 +62,10 @@
#include <Windows.h>
#include <DbgHelp.h>
+#pragma warning( push )
+// Disable exception handler warnings.
+#pragma warning( disable : 4530 )
+
#include <string>
namespace google_airbag {
@@ -143,4 +147,6 @@ class ExceptionHandler {
} // namespace google_airbag
+#pragma warning( pop )
+
#endif // CLIENT_WINDOWS_HANDLER_EXCEPTION_HANDLER_H__