summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2005-07-12 18:15:48 +0000
committerDave Mitchell <davem@fdisolutions.com>2005-07-12 18:15:48 +0000
commit56d23705b5c1a6644965d52e2de049e897bc5077 (patch)
treeb82d014a04ce7c9513ef3dc475cf24457de80b58 /proto.h
parentf9b810e81bd9e67dc80d00836f36e8d03c9021f2 (diff)
downloadperl-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.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/proto.h b/proto.h
index 3caa9f25b1..39e5a2d1db 100644
--- a/proto.h
+++ b/proto.h
@@ -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);