Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make the previous commit compile on OS X
Yes, that's the minimal difference I could come up with.  Alas, something
like

  .say for pipe("cat fooz").lines

still breaks with:

   No such method 'item' for invocant of type 'NQPMu'

in the nqp::decont($PIO).   Giving up for the day.  Hope this helps someone.
  • Loading branch information
lizmat committed Nov 27, 2014
1 parent 86fb968 commit 5675210
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/core/IO/Pipe.pm
@@ -1,3 +1,4 @@
A:
class IO::Pipe does IO does PIO {
has Str $.command;

Expand All @@ -8,8 +9,6 @@ class IO::Pipe does IO does PIO {
self.encoding($bin ?? 'binary' !! $encoding // 'utf8');
self.nl($nl // "\n");
}


}

# vim: ft=perl6 expandtab sw=4

0 comments on commit 5675210

Please sign in to comment.