Skip to content

Commit

Permalink
Trying to get the workflow to work
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaa committed Mar 4, 2024
1 parent f8f189a commit b2dc104
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
# compiler: clang
# - os: windows-latest
# compiler: msvc
- os: macos-latest
compiler: gcc
# - os: macos-latest
# compiler: gcc
- os: macos-latest
compiler: clang

Expand Down
2 changes: 1 addition & 1 deletion logging.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace nextapp::logging {
} // ns


#if !defined(WIN32) && __has_include(<sys/syscall.h>)
#if !defined(WIN32) && !defined(__APPLE__) && __has_include(<sys/syscall.h>)
# define LOGFAULT_USE_TID_AS_NAME 1
#endif

Expand Down

0 comments on commit b2dc104

Please sign in to comment.