From f1f1a64845cd5e559256bd8686fb27a57f88edfb Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Thu, 31 Oct 2019 13:59:38 +1100 Subject: [PATCH] debug/crash;win32: avoid an unused symbol warning --- debug/crash_win32.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/debug/crash_win32.cpp b/debug/crash_win32.cpp index 4f8f29c7..e06cc335 100644 --- a/debug/crash_win32.cpp +++ b/debug/crash_win32.cpp @@ -37,6 +37,7 @@ backtrace_handler (EXCEPTION_POINTERS *data) void cruft::debug::init_crash_handler (void) { + (void)backtrace_handler; #if 0 CHECK (!previous_handler); previous_handler = SetUnhandledExceptionFilter (backtrace_handler);