diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-04-01 19:38:31 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-04-01 19:38:31 +0000 |
commit | def9038f0e6b68e6331316ef6cd457a2bf75dab6 (patch) | |
tree | 1fe0c2db9ff47b101317c1261fdbb4b430e61cca /hv.c | |
parent | f52edb181bf49efa81708ecd89186f642f0f2312 (diff) | |
download | perl-def9038f0e6b68e6331316ef6cd457a2bf75dab6.tar.gz |
The call to Perl_hv_assert(aTHX_ hv) should be wrapped in a DEBUG_A().
p4raw-id: //depot/perl@27665
Diffstat (limited to 'hv.c')
-rw-r--r-- | hv.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -2590,9 +2590,7 @@ Perl_refcounted_he_chain_2hv(pTHX_ const struct refcounted_he *chain) flags, but it's probably not worth it, as this per-hash flag is only really meant as an optimisation for things like Storable. */ HvHASKFLAGS_on(hv); -#ifdef DEBUGGING - Perl_hv_assert(aTHX_ hv); -#endif + DEBUG_A(Perl_hv_assert(aTHX_ hv)); return hv; } |