Skip to content

Commit

Permalink
prevent not and so from autothreading
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Sep 1, 2010
1 parent 2ac5feb commit 606c5fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/operators.pm
Expand Up @@ -113,9 +113,9 @@ our sub none(*@items) {
Junction.new(@items, :none);
}

our multi prefix:<not>($x) { !$x }
our multi prefix:<not>(Mu $x) { !$x }

our multi prefix:<so>($x) { ?$x }
our multi prefix:<so>(Mu $x) { ?$x }

our multi prefix:sym<+^>($x) {
pir::bnot__PP($x)
Expand Down

0 comments on commit 606c5fb

Please sign in to comment.