Since v5.23.4-26-g0b057af made static a bunch a functions not used
outside their own src files, gcc has been complaining:
shared.xs:1172:1: warning: ‘Perl_sharedsv_unlock’ defined but not used [-Wunused-function]
Perl_sharedsv_unlock(pTHX_ SV *ssv)
So "delete" this function using '#if 0'
use Scalar::Util qw(reftype refaddr blessed);
-our $VERSION = '1.49'; # Please update the pod, too.
+our $VERSION = '1.50'; # Please update the pod, too.
my $XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
};
+#if 0
+/* XXX unused dead code */
/* Recursively unlocks a shared sv. */
static void
assert(ul);
recursive_lock_release(aTHX_ &ul->lock);
}
+#endif
/* Recursive locks on a sharedsv.