summaryrefslogtreecommitdiff
path: root/lib/overload.pm
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-02-10 14:08:10 -0800
committerFather Chrysostomos <sprout@cpan.org>2011-02-10 14:08:10 -0800
commitc378af320498199f011ee6aca32cef036936dd36 (patch)
tree8702847a3354a73057da8f06aeaf01fe69f1367d /lib/overload.pm
parent57444a221ffddfdeeb119ddbce1bdea7891d56da (diff)
downloadperl-c378af320498199f011ee6aca32cef036936dd36.tar.gz
The relation between overloading and ties has been fixed.
Diffstat (limited to 'lib/overload.pm')
-rw-r--r--lib/overload.pm13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/overload.pm b/lib/overload.pm
index c538177265..9a2c4c594c 100644
--- a/lib/overload.pm
+++ b/lib/overload.pm
@@ -1678,19 +1678,6 @@ from two overloaded packages.
=item *
-Relation between overloading and tie()ing is broken. Overloading is
-triggered or not basing on the I<previous> class of tie()d value.
-
-This happens because the presence of overloading is checked too early,
-before any tie()d access is attempted. If the FETCH()ed class of the
-tie()d value does not change, a simple workaround is to access the value
-immediately after tie()ing, so that after this call the I<previous> class
-coincides with the current one.
-
-B<Needed:> a way to fix this without a speed penalty.
-
-=item *
-
Barewords are not covered by overloaded string constants.
=back