These should be int to allow them to be ORed together. Ted, please review.

git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@194 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
mmentovai 2007-07-02 20:41:30 +00:00
parent 6a844b1d85
commit 3c07b28119
2 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ ExceptionHandler::ExceptionHandler(const wstring &dump_path,
FilterCallback filter,
MinidumpCallback callback,
void *callback_context,
HandlerType handler_types)
int handler_types)
: filter_(filter),
callback_(callback),
callback_context_(callback_context),

View File

@ -145,7 +145,7 @@ class ExceptionHandler {
FilterCallback filter,
MinidumpCallback callback,
void *callback_context,
HandlerType handler_types);
int handler_types);
~ExceptionHandler();
// Get and set the minidump path.
@ -262,7 +262,7 @@ class ExceptionHandler {
// Tracks the handler types that were installed according to the
// handler_types constructor argument.
HandlerType handler_types_;
int handler_types_;
// When installed_handler_ is true, previous_filter_ is the unhandled
// exception filter that was set prior to installing ExceptionHandler as