diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-05-22 22:03:19 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-05-22 22:03:19 +0000 |
commit | 102d3b8a62934b6c124acd38fad140f94f743df1 (patch) | |
tree | ff247747c009493c6143eaf7cc86c1c4ea151ba1 /cv.h | |
parent | 4b09a709cacc8926b531523da1d1511f3a87dcb2 (diff) | |
download | perl-102d3b8a62934b6c124acd38fad140f94f743df1.tar.gz |
Re-order IVX slot in SV bodies
p4raw-id: //depot/perl@24542
Diffstat (limited to 'cv.h')
-rw-r--r-- | cv.h | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -1,7 +1,7 @@ /* cv.h * * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1999, - * 2000, 2001, 2002, 2003, 2004, by Larry Wall and others + * 2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. @@ -12,9 +12,9 @@ * in sv.h */ struct xpvcv { + IV awaiting_redevelopment; /* integer value */ STRLEN xpv_cur; /* length of xp_pv as a C string */ STRLEN xpv_len; /* allocated size */ - IV xof_off; /* integer value */ union { NV xnvu_nv; /* numeric value, if any */ struct { @@ -213,3 +213,13 @@ should print 123: =cut */ + +/* + * Local variables: + * c-indentation-style: bsd + * c-basic-offset: 4 + * indent-tabs-mode: t + * End: + * + * ex: set ts=8 sts=4 sw=4 noet: + */ |