summaryrefslogtreecommitdiff
path: root/hv.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-04-01 19:38:31 +0000
committerNicholas Clark <nick@ccl4.org>2006-04-01 19:38:31 +0000
commitdef9038f0e6b68e6331316ef6cd457a2bf75dab6 (patch)
tree1fe0c2db9ff47b101317c1261fdbb4b430e61cca /hv.c
parentf52edb181bf49efa81708ecd89186f642f0f2312 (diff)
downloadperl-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.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/hv.c b/hv.c
index 118439a5e0..4565cc0d71 100644
--- a/hv.c
+++ b/hv.c
@@ -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;
}