diff options
author | Andy Lester <andy@petdance.com> | 2005-06-16 04:35:21 -0500 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-06-16 14:33:10 +0000 |
commit | ad73156c09397f3cfc63484d3edc50554da0fe15 (patch) | |
tree | 85a9d8eb0e7f140e97e273de3f18f8a276c0d6ad /universal.c | |
parent | 22022115c87349fc0f6f693201aed817cccd321a (diff) | |
download | perl-ad73156c09397f3cfc63484d3edc50554da0fe15.tar.gz |
Lint support
Message-ID: <20050616143521.GB22188@petdance.com>
p4raw-id: //depot/perl@24873
Diffstat (limited to 'universal.c')
-rw-r--r-- | universal.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/universal.c b/universal.c index 1564b59eaa..99a3dd9eb1 100644 --- a/universal.c +++ b/universal.c @@ -819,6 +819,7 @@ XS(XS_Internals_hv_clear_placehold) XS(XS_Regexp_DESTROY) { + LINT_UNUSED_ARG(cv) } XS(XS_PerlIO_get_layers) @@ -951,7 +952,8 @@ XS(XS_Internals_hash_seed) /* Using dXSARGS would also have dITEM and dSP, * which define 2 unused local variables. */ dAXMARK; - (void)mark; + LINT_UNUSED_ARG(cv) + PERL_UNUSED_VAR(mark); XSRETURN_UV(PERL_HASH_SEED); } @@ -960,7 +962,8 @@ XS(XS_Internals_rehash_seed) /* Using dXSARGS would also have dITEM and dSP, * which define 2 unused local variables. */ dAXMARK; - (void)mark; + LINT_UNUSED_ARG(cv) + PERL_UNUSED_VAR(mark); XSRETURN_UV(PL_rehash_seed); } |