summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorTom Hukins <tom@eborcom.com>2020-12-02 17:00:09 +0000
committerKarl Williamson <khw@cpan.org>2020-12-08 06:23:29 -0700
commit066646363b13856748eb8e0266f99e1470e0dd43 (patch)
treef41b767b98833205b0c3f459dbccecab552623a9 /regcomp.c
parente5dcc6f14fb84e2e304bafe65111baa5c0fef0c9 (diff)
downloadperl-066646363b13856748eb8e0266f99e1470e0dd43.tar.gz
Remove empty "#ifdef"s
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/regcomp.c b/regcomp.c
index 0c8beb0ead..d2433a4df1 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -21804,8 +21804,6 @@ Perl_regfree_internal(pTHX_ REGEXP * const rx)
Used in stclass optimization only */
U32 refcount;
reg_ac_data *aho=(reg_ac_data*)ri->data->data[n];
-#ifdef USE_ITHREADS
-#endif
OP_REFCNT_LOCK;
refcount = --aho->refcount;
OP_REFCNT_UNLOCK;
@@ -21832,8 +21830,6 @@ Perl_regfree_internal(pTHX_ REGEXP * const rx)
/* trie structure. */
U32 refcount;
reg_trie_data *trie=(reg_trie_data*)ri->data->data[n];
-#ifdef USE_ITHREADS
-#endif
OP_REFCNT_LOCK;
refcount = --trie->refcount;
OP_REFCNT_UNLOCK;