From ef6d36178b63630920233cf3d260bdea86d4e026 Mon Sep 17 00:00:00 2001 From: Johannes Schneider Date: Sat, 18 Oct 2025 22:22:20 +0200 Subject: [PATCH] [main] This is just a comment to prevent GitHub from closing this PR when I merge cleanup work --- example/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/example/main.cpp b/example/main.cpp index 20c0c376b..36e69f775 100644 --- a/example/main.cpp +++ b/example/main.cpp @@ -8,6 +8,7 @@ int main(int argc, char *argv[]) { auto renderer = std::make_unique(argc, argv); renderer->run(); } catch (const std::exception &exception) { + // This will catch any exception that was not catched previously. spdlog::critical(exception.what()); return 1; }