Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Ihor Drachuk committed Mar 28, 2024
1 parent 1310b18 commit dbdb0ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions headers/alog/tools.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@

#ifdef ALOG_COMPILER_APPLE_CLANG
#define CLANG_WARNING_DISABLE(x) \
#pragma clang diagnostic push \
#pragma clang diagnostic ignored ##x
_Pragma("clang diagnostic push") \
_Pragma("clang diagnostic ignored " #x)

#define CLANG_WARNING_RESTORE() \
#pragma clang diagnostic pop
_Pragma("clang diagnostic pop")

#else
#define CLANG_WARNING_DISABLE(x)
Expand Down

0 comments on commit dbdb0ae

Please sign in to comment.