diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-11-19 23:06:46 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-11-20 14:13:59 -0800 |
commit | 9c0a60906babcaff328d90d8185138582eb47a13 (patch) | |
tree | 398d8bfcbef24236ede4219f7dd194c07d1d0bcf /proto.h | |
parent | 8fe0571645619844c3a4f2defc3990634138e838 (diff) | |
download | perl-9c0a60906babcaff328d90d8185138582eb47a13.tar.gz |
Add len flag to newCONSTSUB_flags
This function was added after 5.14.0, so it is not too late to
change it. It is currently unused.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2540,7 +2540,7 @@ PERL_CALLCONV OP* Perl_newCONDOP(pTHX_ I32 flags, OP* first, OP* trueop, OP* fal assert(first) PERL_CALLCONV CV* Perl_newCONSTSUB(pTHX_ HV* stash, const char* name, SV* sv); -PERL_CALLCONV CV* Perl_newCONSTSUB_flags(pTHX_ HV* stash, const char* name, U32 flags, SV* sv); +PERL_CALLCONV CV* Perl_newCONSTSUB_flags(pTHX_ HV* stash, const char* name, STRLEN len, U32 flags, SV* sv); PERL_CALLCONV OP* Perl_newCVREF(pTHX_ I32 flags, OP* o) __attribute__malloc__ __attribute__warn_unused_result__; |