diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-07-06 14:56:39 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-07-16 13:58:08 -0600 |
commit | af4954206dfba1b5195f1d962d6a5af92d7efa12 (patch) | |
tree | d5b851f1732cbac8673ad20659b0f84de95aca14 /proto.h | |
parent | 5eb114cff44a7920ae194ed22b1af045e54f96d4 (diff) | |
download | perl-af4954206dfba1b5195f1d962d6a5af92d7efa12.tar.gz |
Reinstate "regcomp.c: Make C-array inversion lists const"
This reverts commit 18505f093a44607b687ae5fe644872f835f66313, which
reverted 241136e0ed70738cccd6c4b20ce12b26231f30e5, thus reinstating the
latter commit. It turns out that the error being chased down was not
due to this commit.
Its original message was:
The inversion lists that are compiled into a C header are now const.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6439,7 +6439,7 @@ PERL_STATIC_INLINE UV* S__invlist_array_init(pTHX_ SV* const invlist, const bool #define PERL_ARGS_ASSERT__INVLIST_ARRAY_INIT \ assert(invlist) -STATIC SV* S__new_invlist_C_array(pTHX_ UV* list) +STATIC SV* S__new_invlist_C_array(pTHX_ const UV* const list) __attribute__warn_unused_result__ __attribute__nonnull__(pTHX_1); #define PERL_ARGS_ASSERT__NEW_INVLIST_C_ARRAY \ |