projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
899c403
)
Require at least 5.008 for pack('J'...) in Data::Dumper
author
Steffen Mueller
<smueller@cpan.org>
Sat, 6 Jun 2009 10:57:21 +0000
(12:57 +0200)
committer
Steffen Mueller
<smueller@cpan.org>
Sat, 6 Jun 2009 10:57:21 +0000
(12:57 +0200)
ext/Data-Dumper/Dumper.pm
patch
|
blob
|
history
diff --git
a/ext/Data-Dumper/Dumper.pm
b/ext/Data-Dumper/Dumper.pm
index
19b3c02
..
a992077
100644
(file)
--- a/
ext/Data-Dumper/Dumper.pm
+++ b/
ext/Data-Dumper/Dumper.pm
@@
-101,7
+101,7
@@
sub new {
return bless($s, $c);
}
-if ($] >= 5.00
6
) {
+if ($] >= 5.00
8
) {
# Packed numeric addresses take less memory. Plus pack is faster than sprintf
*init_refaddr_format = sub {};