diff options
author | Peter Martini <PeterCMartini@GMail.com> | 2013-06-18 00:07:05 -0400 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-06-18 06:22:08 -0700 |
commit | 51c78f1b91bbcd7a261c4a5d75b0d6f66140edca (patch) | |
tree | 4ed1d986afc4c3b9f9a661a98022cbd8dc40d848 /sv.h | |
parent | 07b2687d22462e599adb759b7c0082fb12b3f33d (diff) | |
download | perl-51c78f1b91bbcd7a261c4a5d75b0d6f66140edca.tar.gz |
Upgrade cv_flags_t from 16 to 32 bits.
Its main use is in a struct otherwise filled with pointers, which
means on 32-bit architectures its almost certainly taking up 32
bits anyway.
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -531,7 +531,7 @@ struct xpvgv { union _xnvu xnv_u; }; -typedef U16 cv_flags_t; +typedef U32 cv_flags_t; #define _XPVCV_COMMON \ HV * xcv_stash; \ |