From 4142865b226e15488c1bf8d977c1a158c646aa48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kjell=20Hedstr=C3=B6m?= <331742+KjellKod@users.noreply.github.com> Date: Tue, 5 Dec 2023 22:45:26 -0700 Subject: [PATCH] fixed return --- src/crashhandler_windows.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crashhandler_windows.cpp b/src/crashhandler_windows.cpp index 374fb754..9c874d47 100644 --- a/src/crashhandler_windows.cpp +++ b/src/crashhandler_windows.cpp @@ -213,7 +213,7 @@ namespace g3 { /// on Windows. This is automatically done if you do at least one LOG(...) call /// you can also use this function call, per thread so make sure these three /// fatal signals are covered in your thread (even if you don't do a LOG(...) call - size_t installSignalHandlerForThread() { + void installSignalHandlerForThread() { #if !(defined(DISABLE_FATAL_SIGNALHANDLING)) if (!g_installed_thread_signal_handler) { g_installed_thread_signal_handler = true;