diff options
author | Daniel Dragan <bulk88@hotmail.com> | 2013-12-23 02:11:29 -0500 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-12-23 08:25:08 -0800 |
commit | e8f91c91cc7c3a4a35c08d16f350eabe4852cdf4 (patch) | |
tree | 5b7a8a4380ed25dc73dffc08887a74d0794e7925 /mathoms.c | |
parent | 8c74b41425572faeb638f1269025b59d0785794f (diff) | |
download | perl-e8f91c91cc7c3a4a35c08d16f350eabe4852cdf4.tar.gz |
[perl #115736] fix undocumented param from newATTRSUB_flags
flags param was poorly designed and didn't have a formal api. Replace it
with the bool it really is. See #115736 for details.
Diffstat (limited to 'mathoms.c')
-rw-r--r-- | mathoms.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1170,7 +1170,7 @@ Perl_custom_op_desc(pTHX_ const OP* o) CV * Perl_newSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *block) { - return Perl_newATTRSUB(aTHX_ floor, o, proto, NULL, block); + return newATTRSUB(floor, o, proto, NULL, block); } UV |