summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-10-05 13:00:35 -0700
committerFather Chrysostomos <sprout@cpan.org>2012-11-25 17:12:42 -0800
commit98c9650cd6a4e552074e5a73bc335c5d9f92ff52 (patch)
treebb1d266da2d45ba7efa759d5e3cb08221a7e822a /sv.c
parent048a2f473ab9e1649559f56eff334b3c25289f57 (diff)
downloadperl-98c9650cd6a4e552074e5a73bc335c5d9f92ff52.tar.gz
Move a CAN_COW_MASK comment from sv.c to sv.h
It got left behind in ed25273444 when the macro moved.
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sv.c b/sv.c
index 6f7584778a..37344aeed6 100644
--- a/sv.c
+++ b/sv.c
@@ -66,8 +66,6 @@
#ifdef PERL_OLD_COPY_ON_WRITE
#define SV_COW_NEXT_SV(sv) INT2PTR(SV *,SvUVX(sv))
#define SV_COW_NEXT_SV_SET(current,next) SvUV_set(current, PTR2UV(next))
-/* This is a pessimistic view. Scalar must be purely a read-write PV to copy-
- on-write. */
#endif
/* ============================================================================