diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/client/windows/handler/exception_handler.cc | 2 | ||||
-rw-r--r-- | src/client/windows/handler/exception_handler.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/client/windows/handler/exception_handler.cc b/src/client/windows/handler/exception_handler.cc index 2d7bc57c..9a9d5266 100644 --- a/src/client/windows/handler/exception_handler.cc +++ b/src/client/windows/handler/exception_handler.cc @@ -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), diff --git a/src/client/windows/handler/exception_handler.h b/src/client/windows/handler/exception_handler.h index c2d55609..464bbb78 100644 --- a/src/client/windows/handler/exception_handler.h +++ b/src/client/windows/handler/exception_handler.h @@ -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 |