Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
B: fix Deparse for B::OP::aux_list
Browse files Browse the repository at this point in the history
fixing Test2 is_deeply using $Data::Dumper::Deparse.
Allow the optional cv argument (ignored in cperl)
  • Loading branch information
Reini Urban committed Sep 27, 2016
1 parent 155d451 commit eb4914f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ext/B/B.xs
Original file line number Diff line number Diff line change
Expand Up @@ -1391,8 +1391,9 @@ string(o, cv)
# The design of the upstream aux_list method deviates significantly from proper B design.

void
aux_list(o)
aux_list(o, cv=NULL)
B::OP o
B::CV cv
PPCODE:
PERL_UNUSED_VAR(cv); /* not needed on unthreaded builds */
switch (o->op_type) {
Expand Down

0 comments on commit eb4914f

Please sign in to comment.