Skip to content

Commit

Permalink
Merge pull request #305 from nobu/c2x-pedantic
Browse files Browse the repository at this point in the history
Fix extra semicolon outside of a function in `NO_SANITIZE`
  • Loading branch information
hsbt authored Oct 10, 2024
2 parents 996c51b + 5f9466a commit de0634c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ext/bigdecimal/missing.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
_Pragma("GCC diagnostic push") \
_Pragma("GCC diagnostic ignored \"-Wattributes\"") \
__attribute__((__no_sanitize__(x))) y; \
_Pragma("GCC diagnostic pop")
_Pragma("GCC diagnostic pop") \
y
#endif

#undef strtod
Expand Down

0 comments on commit de0634c

Please sign in to comment.