diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-06-04 17:06:03 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-06-04 18:14:54 -0700 |
commit | c947b31cf1422f59c2ed95f6d3de272c2793a60c (patch) | |
tree | 65c859626fc44a5014945b2a22b1f32971bbaba2 /util.c | |
parent | 61b3e50d8dcb71970472bb2a7467f30042a9eaf5 (diff) | |
download | perl-c947b31cf1422f59c2ed95f6d3de272c2793a60c.tar.gz |
Do away with stashpv_hvname_match
For some reason this is listed in the API, even though it is not docu-
mented and is only available under ithreads.
It was added by commit ed221c5717, which doesn’t explain why it needed
to be part of the API. (Presumably because a public macro used it,
even though there are better ways to solve that.)
It is unused on CPAN and (now) in core, so there is no reason
to keep it.
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -5694,16 +5694,6 @@ Perl_get_hash_seed(pTHX) return myseed; } -#ifdef USE_ITHREADS -bool -Perl_stashpv_hvname_match(pTHX_ const COP *c, const HV *hv) -{ - PERL_ARGS_ASSERT_STASHPV_HVNAME_MATCH; - return CopSTASH(c) == hv; -} -#endif - - #ifdef PERL_GLOBAL_STRUCT #define PERL_GLOBAL_STRUCT_INIT |