diff options
author | Karl Williamson <khw@cpan.org> | 2016-02-27 13:54:51 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-02-27 18:08:36 -0700 |
commit | e7d603c00cb813983ddd3206655540d997d10e29 (patch) | |
tree | 2f5b0e525d7d286401202d32de7e089ac411050a /regcomp.c | |
parent | acb2202e0b234a5f6166a7379a38128ab1e049e5 (diff) | |
download | perl-e7d603c00cb813983ddd3206655540d997d10e29.tar.gz |
regcomp.c: Add new static inline convenience function
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -8442,6 +8442,17 @@ S_invlist_trim(SV* invlist) } } +PERL_STATIC_INLINE void +S_invlist_clear(pTHX_ SV* invlist) /* Empty the inversion list */ +{ + PERL_ARGS_ASSERT_INVLIST_CLEAR; + + assert(SvTYPE(invlist) == SVt_INVLIST); + + invlist_set_len(invlist, 0, 0); + invlist_trim(invlist); +} + #endif /* ifndef PERL_IN_XSUB_RE */ PERL_STATIC_INLINE bool @@ -9357,8 +9368,7 @@ Perl__invlist_intersection_maybe_complement_2nd(pTHX_ SV* const a, SV* const b, invlist_replace_list_destroys_src(*i, r); } else { - invlist_set_len(*i, 0, 0); - invlist_trim(*i); + invlist_clear(*i); } SvREFCNT_dec_NN(r); } |