diff options
author | Karen Etheridge <ether@cpan.org> | 2014-04-03 11:08:20 -0700 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2014-05-28 14:52:42 +1000 |
commit | a18468ad888b2ce01fc1e93ff467b83bd297d54d (patch) | |
tree | 4aec2d868492b46694dfcdf74e6738131cff5319 /dist/Carp/lib/Carp.pm | |
parent | 30536d4a5631d2ce85a2623642a5c73858d38337 (diff) | |
download | perl-a18468ad888b2ce01fc1e93ff467b83bd297d54d.tar.gz |
Ignore mismatched versions between Carp and Carp::Heavy if the version discrepancy does not actually lead to broken code
Carp::Heavy's guts were merged into Carp in 1.12. After this point, if a
different version of Carp::Heavy is loaded than Carp, no harm will be done and
the error can be ignored.
Diffstat (limited to 'dist/Carp/lib/Carp.pm')
-rw-r--r-- | dist/Carp/lib/Carp.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/Carp/lib/Carp.pm b/dist/Carp/lib/Carp.pm index e1dca01e52..99b694586d 100644 --- a/dist/Carp/lib/Carp.pm +++ b/dist/Carp/lib/Carp.pm @@ -87,7 +87,7 @@ BEGIN { } } -our $VERSION = '1.3301'; +our $VERSION = '1.34'; our $MaxEvalLen = 0; our $Verbose = 0; |