diff options
author | Karl Williamson <khw@cpan.org> | 2019-11-16 05:28:41 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-11-16 05:58:47 -0700 |
commit | 0c22dc835257d738c02319da792a7707bbc75dcf (patch) | |
tree | c8128eefa90b980e5899f76510e58e2b0f555e3e /proto.h | |
parent | 2077aa94255b801f80c7c0f291ea8e57b37c6167 (diff) | |
download | perl-0c22dc835257d738c02319da792a7707bbc75dcf.tar.gz |
embed.fnc: Parameter is really a const
Make it so.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6334,7 +6334,7 @@ STATIC int S_yywarn(pTHX_ const char *const s, U32 flags); #endif #if defined(PERL_IN_UNIVERSAL_C) STATIC bool S_isa_lookup(pTHX_ HV *stash, SV *namesv, const char * name, STRLEN len, U32 flags); -STATIC bool S_sv_derived_from_svpvn(pTHX_ SV *sv, SV *namesv, const char * name, STRLEN len, U32 flags); +STATIC bool S_sv_derived_from_svpvn(pTHX_ SV *sv, SV *namesv, const char * name, const STRLEN len, U32 flags); #endif #if defined(PERL_IN_UTF8_C) STATIC UV S__to_utf8_case(pTHX_ const UV uv1, const U8 *p, U8* ustrp, STRLEN *lenp, SV *invlist, const int * const invmap, const unsigned int * const * const aux_tables, const U8 * const aux_table_lengths, const char * const normal); |