Skip to content

Commit

Permalink
clang warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
toxieainc committed Jan 4, 2024
1 parent c7e88b6 commit c5c6fad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/sse2neon.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
#pragma message("Macro name collisions may happen with unsupported compilers.")
#endif

#if defined(__GNUC__) && __GNUC__ < 10
#if !defined(__clang__) && defined(__GNUC__) && __GNUC__ < 10
#warning "GCC versions earlier than 10 are not supported."
#endif

Expand Down

0 comments on commit c5c6fad

Please sign in to comment.