Skip to content

Commit

Permalink
build fix (9)
Browse files Browse the repository at this point in the history
  • Loading branch information
valdok committed Jun 30, 2023
1 parent c451086 commit cdc0d94
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions core/keccak.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
#if defined(__clang__) || defined(__GNUC__) || defined(__GNUG__)
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Warray-bounds" // incorrectly triggers here
# if !defined(__has_warning) || __has_warning("-Wstringop-overflow")
# pragma GCC diagnostic ignored "-Wstringop-overflow"
# if defined (__has_warning)
# if __has_warning("-Wstringop-overflow")
# pragma GCC diagnostic ignored "-Wstringop-overflow"
# endif
# endif
#endif

Expand Down

0 comments on commit cdc0d94

Please sign in to comment.