From d45d91340f0833f50bbfa9ac5db1419893618bfe Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 1 Aug 2025 07:42:58 -0500 Subject: [PATCH] Add macOS support #34 --- support/src/utils/unix.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/support/src/utils/unix.cpp b/support/src/utils/unix.cpp index 7d647690..8d4c4683 100644 --- a/support/src/utils/unix.cpp +++ b/support/src/utils/unix.cpp @@ -31,7 +31,6 @@ auto convert_to_uint64(pthread_t thread) -> std::uint64_t { #else // defined(__APPLE__) return static_cast(thread); #endif // defined(__APPLE__) -} auto get_last_error_code() -> int { return errno; }