diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-07-04 21:59:03 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-07-04 22:44:51 -0600 |
commit | 18505f093a44607b687ae5fe644872f835f66313 (patch) | |
tree | 04f60d11e207b243454c9e1b5f960abe24c1c32f /regen | |
parent | 531e2078f59379db6eff2b836b2a0e74ef3d3c52 (diff) | |
download | perl-18505f093a44607b687ae5fe644872f835f66313.tar.gz |
Revert "regcomp.c: Make C-array inversion lists const"
This reverts commit 241136e0ed70738cccd6c4b20ce12b26231f30e5.
This continues the backing out of this topic branch. A bisect shows
that the first commit exhibiting an error is the first one in the
branch.
Diffstat (limited to 'regen')
-rw-r--r-- | regen/mk_invlists.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regen/mk_invlists.pl b/regen/mk_invlists.pl index 5163907e60..f1e1bd9843 100644 --- a/regen/mk_invlists.pl +++ b/regen/mk_invlists.pl @@ -15,7 +15,7 @@ require 'regen/regen_lib.pl'; # in the headers is used to minimize the possibility of things getting # out-of-sync, or the wrong data structure being passed. Currently that # random number is: -my $VERSION_DATA_STRUCTURE_TYPE = 1826693541; +my $VERSION_DATA_STRUCTURE_TYPE = 1511554547; my $out_fh = open_new('charclass_invlists.h', '>', {style => '*', by => $0, @@ -45,7 +45,7 @@ sub output_invlist ($$) { } print $out_fh "\n#ifndef PERL_IN_XSUB_RE\n" unless exists $include_in_ext_re{$name}; - print $out_fh "\nstatic const UV ${name}_invlist[] = {\n"; + print $out_fh "\nstatic UV ${name}_invlist[] = {\n"; print $out_fh "\t$count,\t/* Number of elements */\n"; print $out_fh "\t$VERSION_DATA_STRUCTURE_TYPE, /* Version and data structure type */\n"; |