Skip to content

Commit

Permalink
fix apple compiler unknown pragma
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Jul 9, 2023
1 parent 32afe98 commit a7050f9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/coreav.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@
#pragma GCC diagnostic ignored "-Wunused-parameter"
#pragma GCC diagnostic ignored "-Wunused-function"
#pragma GCC diagnostic ignored "-Wnull-dereference"
#ifndef __APPLE__
#pragma GCC diagnostic ignored "-Wstringop-overflow="
#pragma GCC diagnostic ignored "-Wstringop-overflow"
#endif
#pragma GCC diagnostic ignored "-Wshadow"
#pragma GCC diagnostic ignored "-Wformat"
#pragma GCC diagnostic ignored "-Wpedantic"
Expand Down

0 comments on commit a7050f9

Please sign in to comment.