From 51c78f1b91bbcd7a261c4a5d75b0d6f66140edca Mon Sep 17 00:00:00 2001 From: Peter Martini Date: Tue, 18 Jun 2013 00:07:05 -0400 Subject: [PATCH] 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. --- sv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sv.h b/sv.h index 449b23e..b0fd5b2 100644 --- a/sv.h +++ b/sv.h @@ -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; \ -- 1.8.3.1