summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-08-27 15:33:58 -0600
committerKarl Williamson <khw@cpan.org>2020-09-01 18:16:47 -0600
commit3968dd31449cdb2ec3259e2068fcf61d78618c3a (patch)
tree8302a9ff4225e96beb075b6210b5c1a0990f7d68 /sv.h
parent300ca7471572633b3dbe7ea060a251028760b74e (diff)
downloadperl-3968dd31449cdb2ec3259e2068fcf61d78618c3a.tar.gz
sv.h: Clarify comment
Diffstat (limited to 'sv.h')
-rw-r--r--sv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.h b/sv.h
index 59ef6985d0..c276243545 100644
--- a/sv.h
+++ b/sv.h
@@ -1287,7 +1287,7 @@ object type. Exposed to perl code via Internals::SvREADONLY().
#ifndef PERL_POISON
/* Given that these two are new, there can't be any existing code using them
- * as LVALUEs */
+ * as LVALUEs, so prevent that from happening */
# define SvPVX_mutable(sv) (0 + (sv)->sv_u.svu_pv)
# define SvPVX_const(sv) ((const char*)(0 + (sv)->sv_u.svu_pv))
#else