In perl.git, the branch blead has been updated <https://perl5.git.perl.org/perl.git/commitdiff/44918de81dce7a3a8ad6f89587d1d1f97721a393?hp=f05f24e529a8da95d8b88a6bcbf0ffe8a0076027>
- Log ----------------------------------------------------------------- commit 44918de81dce7a3a8ad6f89587d1d1f97721a393 Author: Karl Williamson <[email protected]> Date: Wed Jan 24 18:05:31 2018 -0700 embed.fnc: Formal param shouldn't be const ----------------------------------------------------------------------- Summary of changes: embed.fnc | 2 +- proto.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/embed.fnc b/embed.fnc index b9351be60f..c21272dffb 100644 --- a/embed.fnc +++ b/embed.fnc @@ -2727,7 +2727,7 @@ s |void |incline |NN const char *s|NN const char *end s |int |intuit_method |NN char *s|NULLOK SV *ioname|NULLOK CV *cv s |int |intuit_more |NN char *s|NN char *e s |I32 |lop |I32 f|U8 x|NN char *s -rs |void |missingterm |NULLOK char *s|const STRLEN len +rs |void |missingterm |NULLOK char *s|STRLEN len s |void |no_op |NN const char *const what|NULLOK char *s s |int |pending_ident sR |I32 |sublex_done diff --git a/proto.h b/proto.h index 042a4ee084..1211e57dab 100644 --- a/proto.h +++ b/proto.h @@ -5826,7 +5826,7 @@ STATIC int S_intuit_more(pTHX_ char *s, char *e); STATIC I32 S_lop(pTHX_ I32 f, U8 x, char *s); #define PERL_ARGS_ASSERT_LOP \ assert(s) -PERL_STATIC_NO_RET void S_missingterm(pTHX_ char *s, const STRLEN len) +PERL_STATIC_NO_RET void S_missingterm(pTHX_ char *s, STRLEN len) __attribute__noreturn__; STATIC SV* S_new_constant(pTHX_ const char *s, STRLEN len, const char *key, STRLEN keylen, SV *sv, SV *pv, const char *type, STRLEN typelen); -- Perl5 Master Repository
