Skip to content

Commit 5f9466a

Browse files
committed
Fix extra semicolon outside of a function in NO_SANITIZE
1 parent 996c51b commit 5f9466a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ext/bigdecimal/missing.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
_Pragma("GCC diagnostic push") \
1616
_Pragma("GCC diagnostic ignored \"-Wattributes\"") \
1717
__attribute__((__no_sanitize__(x))) y; \
18-
_Pragma("GCC diagnostic pop")
18+
_Pragma("GCC diagnostic pop") \
19+
y
1920
#endif
2021

2122
#undef strtod

0 commit comments

Comments
 (0)