diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-03-04 03:27:55 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-03-04 03:27:55 +0100 |
commit | b16ab0038a0ec70c59a3bbfef4aa4dee0b04cf15 (patch) | |
tree | 4635d52ee99509a25947be4fafa28947ae47fa7d | |
parent | 1b254aa3c1489c7efcde1f151724459350b85fcf (diff) |
ci: fix build
-rw-r--r-- | main/debug-break.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/debug-break.cpp b/main/debug-break.cpp index 218dbe41..72756f37 100644 --- a/main/debug-break.cpp +++ b/main/debug-break.cpp @@ -11,7 +11,7 @@ void floormat::floormat_main::debug_break() #ifdef _WIN32 if (IsDebuggerPresent()) [[unlikely]] DebugBreak(); -#else +#elif !defined __APPLE__ if (ptrace(PTRACE_TRACEME, 0, 1, 0) == -1) ::raise(SIGUSR1); #endif |