X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=cv.h;h=ba8364b9e659affa0e6fed20f81a3a73b274a83a;hb=42a116590b56a49035a440a6b0f3a679f91e9375;hp=ac9d861429e3d518196671544e128bb30ea653f7;hpb=e4305a6302fd35f8f8c1a7e612369beaaea58a4a;p=p5sagit%2Fp5-mst-13.2.git diff --git a/cv.h b/cv.h index ac9d861..ba8364b 100644 --- a/cv.h +++ b/cv.h @@ -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,11 +12,10 @@ * 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 { void *xnv_p1; union { @@ -24,6 +23,7 @@ struct xpvcv { IV xnv_i2; } xnv_u2; } xnv_s; + NV xnvu_nv; /* numeric value, if any */ } xnv_u; MAGIC* xmg_magic; /* magic for scalar array */ HV* xmg_stash; /* class package */ @@ -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: + */