summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-04-18 17:50:05 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-04-18 17:50:05 -0700
commitce3c917f22856a28ef1ea75e481787264bbd2481 (patch)
tree840a26d1c5d9201fe370e3a1fa3f1ecbb4a92b73
parent7ac5715b7e1d379bf1c97420a56388ecdfacd30f (diff)
downloadperl-ce3c917f22856a28ef1ea75e481787264bbd2481.tar.gz
Remove ambigous warning from perldiag
This no longer happens as of commit 7ac5715.
-rw-r--r--pod/perldiag.pod11
1 files changed, 0 insertions, 11 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod
index 56e840807f..8f2ad2913f 100644
--- a/pod/perldiag.pod
+++ b/pod/perldiag.pod
@@ -76,17 +76,6 @@ on the operator (e.g. C<CORE::log($x)>) or declare the subroutine
to be an object method (see L<perlsub/"Subroutine Attributes"> or
L<attributes>).
-=item Ambiguous overloaded argument to %s resolved as %s
-
-(W ambiguous) You called C<keys>, C<values> or C<each> on an object that had
-overloading of C<%{}> or C<@{}> or both. In such a case, the object is
-dereferenced according to its overloading, not its underlying reference type.
-The warning is issued when C<%{}> overloading exists on a blessed arrayref,
-when C<@{}> overloading exists on a blessed hashref, or when both overloadings
-are defined (in which case C<%{}> is used). You can force the interpretation
-of the object by explicitly dereferencing it as an array or hash instead of
-passing the object itself to C<keys>, C<values> or C<each>.
-
=item Ambiguous range in transliteration operator
(F) You wrote something like C<tr/a-z-0//> which doesn't mean anything at