@@ -1695,7 +1695,7 @@ Perl_re_op_compile(pTHX_ SV ** const patternp, int pat_count,
1695
1695
RExC_in_lookaround = false;
1696
1696
RExC_seen_zerolen = *exp == '^' ? -1 : 0;
1697
1697
RExC_recode_x_to_native = false;
1698
- RExC_in_multi_char_class = 0 ;
1698
+ RExC_in_multi_char_class = false ;
1699
1699
1700
1700
RExC_start = RExC_copy_start_in_constructed = RExC_copy_start_in_input = RExC_precomp = exp;
1701
1701
RExC_precomp_end = RExC_end = exp + plen;
@@ -10822,7 +10822,7 @@ S_regclass(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth,
10822
10822
RExC_parse_set( RExC_start );
10823
10823
RExC_copy_start_in_constructed = RExC_start + constructed_prefix_len;
10824
10824
RExC_end = RExC_parse + len;
10825
- RExC_in_multi_char_class = 1 ;
10825
+ RExC_in_multi_char_class = true ;
10826
10826
10827
10827
ret = reg(pRExC_state, 1, ®_flags, depth+1);
10828
10828
@@ -10832,7 +10832,7 @@ S_regclass(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth,
10832
10832
RExC_parse_set(save_parse);
10833
10833
RExC_start = RExC_copy_start_in_constructed = RExC_copy_start_in_input = save_start;
10834
10834
RExC_end = save_end;
10835
- RExC_in_multi_char_class = 0 ;
10835
+ RExC_in_multi_char_class = false ;
10836
10836
SvREFCNT_dec_NN(multi_char_matches);
10837
10837
SvREFCNT_dec(properties);
10838
10838
SvREFCNT_dec(cp_list);
0 commit comments