mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ruby/ruby.h: void rb_scan_args_verify
* include/ruby/ruby.h (rb_scan_args_verify): void the never used result. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65812 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9c336391f2
commit
de790435fa
1 changed files with 3 additions and 3 deletions
|
@ -2316,10 +2316,10 @@ ERRORFUNC(("variable argument length doesn't match"), int rb_scan_args_length_mi
|
|||
rb_scan_args_length_mismatch(fmt, varc)))
|
||||
|
||||
# if defined(__has_attribute) && __has_attribute(diagnose_if)
|
||||
# define rb_scan_args_verify(fmt, varc) 0
|
||||
# define rb_scan_args_verify(fmt, varc) (void)0
|
||||
# elif defined(__GNUC__)
|
||||
# define rb_scan_args_verify(fmt, varc) \
|
||||
__extension__ ({ \
|
||||
(void)__extension__ ({ \
|
||||
int verify; \
|
||||
_Pragma("GCC diagnostic push"); \
|
||||
_Pragma("GCC diagnostic ignored \"-Warray-bounds\""); \
|
||||
|
@ -2329,7 +2329,7 @@ ERRORFUNC(("variable argument length doesn't match"), int rb_scan_args_length_mi
|
|||
})
|
||||
# else
|
||||
# define rb_scan_args_verify(fmt, varc) \
|
||||
rb_scan_args_verify_count(fmt, varc)
|
||||
(void)rb_scan_args_verify_count(fmt, varc)
|
||||
# endif
|
||||
|
||||
ALWAYS_INLINE(static int rb_scan_args_lead_p(const char *fmt));
|
||||
|
|
Loading…
Reference in a new issue