diff options
author | Zefram <zefram@fysh.org> | 2012-02-01 22:22:59 +0000 |
---|---|---|
committer | Zefram <zefram@fysh.org> | 2012-02-01 22:24:08 +0000 |
commit | 2d7dd515d6a07689150209035b38f752bd24b378 (patch) | |
tree | 12520761146ac3441ed6d9a7ef34bcbbb465d6e5 /proto.h | |
parent | 013abb9bfbbb8091fa79597e81e7208ef1fe2dde (diff) | |
download | perl-2d7dd515d6a07689150209035b38f752bd24b378.tar.gz |
really allow pad_findmy's retval to be ignored
402642c6301a1dbc64ea3acc8beee35078afee26 only changed pad_findmy_pvn.
pad_findmy_pv and pad_findmy_sv need the same treatment.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -2956,7 +2956,6 @@ PERL_CALLCONV HV* Perl_pad_compname_type(pTHX_ const PADOFFSET po) __attribute__warn_unused_result__; PERL_CALLCONV PADOFFSET Perl_pad_findmy_pv(pTHX_ const char* name, U32 flags) - __attribute__warn_unused_result__ __attribute__nonnull__(pTHX_1); #define PERL_ARGS_ASSERT_PAD_FINDMY_PV \ assert(name) @@ -2967,7 +2966,6 @@ PERL_CALLCONV PADOFFSET Perl_pad_findmy_pvn(pTHX_ const char* namepv, STRLEN nam assert(namepv) PERL_CALLCONV PADOFFSET Perl_pad_findmy_sv(pTHX_ SV* name, U32 flags) - __attribute__warn_unused_result__ __attribute__nonnull__(pTHX_1); #define PERL_ARGS_ASSERT_PAD_FINDMY_SV \ assert(name) |