Skip to content

Commit 4521b3c

Browse files
committed
Remove TODO warning from parse_keyword_subsignature in XS-APItest
This was useful during early development of the test but it's too fragile and prints far too easily at other times, we might as well remove it. #23679 (comment)
1 parent d9b90c3 commit 4521b3c

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

ext/XS-APItest/APItest.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use warnings;
55
use Carp;
66

7-
our $VERSION = '1.45';
7+
our $VERSION = '1.46';
88

99
require XSLoader;
1010

ext/XS-APItest/APItest.xs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,11 +1221,6 @@ static OP *THX_parse_keyword_subsignature(pTHX)
12211221
retop = op_append_list(OP_LIST, retop, newSVOP(OP_CONST, 0, retsv));
12221222
break;
12231223
}
1224-
case OP_PARAMTEST:
1225-
break;
1226-
default:
1227-
fprintf(stderr, "TODO: examine kid %p (optype=%s)\n", kid, PL_op_name[kid->op_type]);
1228-
break;
12291224
}
12301225
}
12311226

0 commit comments

Comments
 (0)