X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=cv.h;h=7fa94009652bf1435d1c41f52cc296e89041cea0;hb=23acf6821d640f06d65b9a368b9c4101c358376d;hp=bf9e180e42d7a287ad6dc86da4daf2afdf66e1e0;hpb=246699ca5e3af04fcf52cf11c1535421dd986e59;p=p5sagit%2Fp5-mst-13.2.git diff --git a/cv.h b/cv.h index bf9e180..7fa9400 100644 --- a/cv.h +++ b/cv.h @@ -34,7 +34,6 @@ struct xpvcv { struct perl_thread *xcv_owner; /* current owner thread */ #endif /* USE_THREADS */ cv_flags_t xcv_flags; - HV * xcv_defstash; }; /* @@ -70,7 +69,6 @@ Returns the stash of the CV. #define CvOWNER(sv) ((XPVCV*)SvANY(sv))->xcv_owner #endif /* USE_THREADS */ #define CvFLAGS(sv) ((XPVCV*)SvANY(sv))->xcv_flags -#define CvDEFSTASH(sv) ((XPVCV*)SvANY(sv))->xcv_defstash #define CVf_CLONE 0x0001 /* anon CV uses external lexicals */ #define CVf_CLONED 0x0002 /* a clone of one of those */