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, FilterCallback filter,
MinidumpCallback callback, MinidumpCallback callback,
void *callback_context, void *callback_context,
HandlerType handler_types) int handler_types)
: filter_(filter), : filter_(filter),
callback_(callback), callback_(callback),
callback_context_(callback_context), callback_context_(callback_context),

View file

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