Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Correct/simplify =:= implementation.
Can only guess that it dates back to before we had an nqp::eqaddr.
  • Loading branch information
jnthn committed Jun 21, 2013
1 parent 85f7372 commit aed9508
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Mu.pm
Expand Up @@ -611,7 +611,7 @@ multi sub infix:<~~>(Mu \topic, Mu \matcher) {
proto sub infix:<=:=>(Mu $a?, Mu $b?) { * }
multi sub infix:<=:=>($a?) { Bool::True }
multi sub infix:<=:=>(Mu \a, Mu \b) {
nqp::p6bool(nqp::iseq_i(nqp::where(a), nqp::where(b)));
nqp::p6bool(nqp::eqaddr(a, b));
}

proto sub infix:<eqv>(Any $?, Any $?) { * }
Expand Down

0 comments on commit aed9508

Please sign in to comment.