Skip to content

Commit

Permalink
prevent warnings about vstrings in use on perl 5.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
haarg authored and rjbs committed Mar 10, 2014
1 parent 6eaabaf commit 6f7d7e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Mixin/Linewise/Readers.pm
Expand Up @@ -3,7 +3,7 @@ use warnings;
package Mixin::Linewise::Readers;
# ABSTRACT: get linewise readers for strings and filenames

use 5.8.1; # PerlIO
use 5.008001; # PerlIO
use Carp ();
use IO::File;
use PerlIO::utf8_strict;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mixin/Linewise/Writers.pm
Expand Up @@ -3,7 +3,7 @@ use warnings;
package Mixin::Linewise::Writers;
# ABSTRACT: get linewise writers for strings and filenames

use 5.8.1; # PerlIO
use 5.008001; # PerlIO
use Carp ();
use IO::File;

Expand Down

0 comments on commit 6f7d7e4

Please sign in to comment.