Skip to content

Commit

Permalink
Remove RT reference because it is no longer applicable
Browse files Browse the repository at this point in the history
The ticket referred to missing use of nqp::p6bool, which is:
- replaced by nqp::hllbool
- and is used in this piece of code
  • Loading branch information
lizmat committed Jan 10, 2020
1 parent 70f96d9 commit 276c06d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.c/Stringy.pm6
Expand Up @@ -6,7 +6,7 @@ multi sub infix:<eqv>(Stringy:D \a, Stringy:D \b) {
nqp::hllbool(
nqp::unless(
nqp::eqaddr(a,b),
nqp::eqaddr(a.WHAT,b.WHAT) && nqp::iseq_i(a cmp b,0) # XXX RT #128092
nqp::eqaddr(a.WHAT,b.WHAT) && nqp::iseq_i(a cmp b,0)
)
)
}
Expand Down

0 comments on commit 276c06d

Please sign in to comment.