summaryrefslogtreecommitdiff
path: root/gv.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2015-01-04 17:12:11 -0800
committerFather Chrysostomos <sprout@cpan.org>2015-01-31 22:03:52 -0800
commit6d06ecceafd35d5028e1f8e07ccef129554b8135 (patch)
tree417e7504c5c7ca93803c881e9c8bf2c986d3fcf4 /gv.c
parent3b41b1dff469337d35e4521c1f3331cb0e085019 (diff)
downloadperl-6d06ecceafd35d5028e1f8e07ccef129554b8135.tar.gz
gv.c: Make &.= overloading work
Diffstat (limited to 'gv.c')
-rw-r--r--gv.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gv.c b/gv.c
index 68018162f1..236416a609 100644
--- a/gv.c
+++ b/gv.c
@@ -3266,6 +3266,9 @@ Perl_amagic_call(pTHX_ SV *left, SV *right, int method, int flags)
case band_amg:
case bor_amg:
case bxor_amg:
+ case sband_amg:
+ case sbor_amg:
+ case sbxor_amg:
if (assign)
force_scalar = 1;
break;