summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2015-01-31 14:06:15 -0800
committerFather Chrysostomos <sprout@cpan.org>2015-01-31 22:03:40 -0800
commit26b17dd21e4aedef224e009510eebb11d2256d3a (patch)
tree78d1ecc4f6ba7c4b907dceb7224cdf1c989cf21c /proto.h
parent8e0a1bb9cff8cd2454b2ecbc25a56649bba360bd (diff)
downloadperl-26b17dd21e4aedef224e009510eebb11d2256d3a.tar.gz
Remove context param from sv_get_backrefs
v5.21.7-83-geaab564 added sv_get_backrefs. v5.21.7-90-g8fbcb65 removed the one use of aTHX.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto.h b/proto.h
index ca280b53fd..966c6d880d 100644
--- a/proto.h
+++ b/proto.h
@@ -4392,9 +4392,9 @@ PERL_CALLCONV void Perl_sv_free2(pTHX_ SV *const sv, const U32 refcnt)
assert(sv)
PERL_CALLCONV void Perl_sv_free_arenas(pTHX);
-PERL_CALLCONV SV* Perl_sv_get_backrefs(pTHX_ SV *const sv)
+PERL_CALLCONV SV* Perl_sv_get_backrefs(SV *const sv)
__attribute__pure__
- __attribute__nonnull__(pTHX_1);
+ __attribute__nonnull__(1);
#define PERL_ARGS_ASSERT_SV_GET_BACKREFS \
assert(sv)