diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2005-07-12 18:15:48 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2005-07-12 18:15:48 +0000 |
commit | 56d23705b5c1a6644965d52e2de049e897bc5077 (patch) | |
tree | b82d014a04ce7c9513ef3dc475cf24457de80b58 /proto.h | |
parent | f9b810e81bd9e67dc80d00836f36e8d03c9021f2 (diff) | |
download | perl-56d23705b5c1a6644965d52e2de049e897bc5077.tar.gz |
get_?v have side effects, so their return values may be ignored
p4raw-id: //depot/perl@25126
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -1315,19 +1315,15 @@ PERL_CALLCONV I32 Perl_eval_sv(pTHX_ SV* sv, I32 flags) __attribute__nonnull__(pTHX_1); PERL_CALLCONV SV* Perl_get_sv(pTHX_ const char* name, I32 create) - __attribute__warn_unused_result__ __attribute__nonnull__(pTHX_1); PERL_CALLCONV AV* Perl_get_av(pTHX_ const char* name, I32 create) - __attribute__warn_unused_result__ __attribute__nonnull__(pTHX_1); PERL_CALLCONV HV* Perl_get_hv(pTHX_ const char* name, I32 create) - __attribute__warn_unused_result__ __attribute__nonnull__(pTHX_1); PERL_CALLCONV CV* Perl_get_cv(pTHX_ const char* name, I32 create) - __attribute__warn_unused_result__ __attribute__nonnull__(pTHX_1); PERL_CALLCONV int Perl_init_i18nl10n(pTHX_ int printwarn); |