1
0
Fork 0
mirror of https://github.com/Neargye/magic_enum.git synced 2026-01-09 23:34:23 +00:00

fix: add missing return type in FatalConditionHandler (catch.hpp) to fix compile error

This commit is contained in:
TrialCarrot 2025-10-12 22:31:59 +08:00
parent 83ab7f4f57
commit b028c0eb81

View file

@ -10751,8 +10751,8 @@ namespace Catch {
// If neither SEH nor signal handling is required, the handler impls
// do not have to do anything, and can be empty.
FatalConditionHandler::engage_platform() {}
FatalConditionHandler::disengage_platform() {}
void FatalConditionHandler::engage_platform() {}
void FatalConditionHandler::disengage_platform() {}
FatalConditionHandler::FatalConditionHandler() = default;
FatalConditionHandler::~FatalConditionHandler() = default;