mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2025-12-30 19:24:45 +01:00
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
This commit is contained in:
parent
1bff57e589
commit
12a5245bfe
5 changed files with 24 additions and 0 deletions
|
|
@ -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__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue