projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
899c403
)
Require at least 5.008 for pack('J'...) in Data::Dumper
Steffen Mueller [Sat, 6 Jun 2009 10:57:21 +0000 (12:57 +0200)]
ext/Data-Dumper/Dumper.pm
patch
|
blob
|
blame
|
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.006) {
+if ($] >= 5.008) {
# Packed numeric addresses take less memory. Plus pack is faster than sprintf
*init_refaddr_format = sub {};