We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 074bb1f commit 3a72761Copy full SHA for 3a72761
example/main.cpp
@@ -8,6 +8,7 @@ int main(int argc, char *argv[]) {
8
auto renderer = std::make_unique<Application>(argc, argv);
9
renderer->run();
10
} catch (const std::exception &exception) {
11
+ // This will catch any exception that was not catched previously.
12
spdlog::critical(exception.what());
13
return 1;
14
}
0 commit comments