This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
unused context warnings
[perl5.git] / hv.c
diff --git a/hv.c b/hv.c
index f68f38c..0923f90 100644 (file)
--- a/hv.c
+++ b/hv.c
@@ -1969,6 +1969,7 @@ Perl_hv_name_set(pTHX_ HV *hv, const char *name, I32 len, int flags)
 AV **
 Perl_hv_backreferences_p(pTHX_ HV *hv) {
     struct xpvhv_aux * const iter = SvOOK(hv) ? HvAUX(hv) : hv_auxinit(hv);
+    PERL_UNUSED_CONTEXT;
     return &(iter->xhv_backreferences);
 }