From 64945d95efdf7d29617760261a3738089cfd36e3 Mon Sep 17 00:00:00 2001 From: Jorijn van der Graaf Date: Mon, 9 Mar 2026 20:20:17 +0100 Subject: [PATCH] windows exception handler --- implementations/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/implementations/main.cpp b/implementations/main.cpp index 259f897..5f5ece1 100644 --- a/implementations/main.cpp +++ b/implementations/main.cpp @@ -27,6 +27,7 @@ namespace fs = std::filesystem; #if defined(CRAFTER_BUILD_CONFIGURATION_TARGET_x86_64_pc_windows_msvc) || defined(CRAFTER_BUILD_CONFIGURATION_TARGET_x86_64_w64_mingw32) void terminateHandler() { + std::cout << "test" << std::endl; try { if (auto e = std::current_exception()) { std::rethrow_exception(e);