From: Nick Ing-Simmons Date: Wed, 19 Dec 2001 12:03:21 +0000 (+0000) Subject: Remove the sometimes-lvalue cast X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=205c8ad3acbda0df8cac03a0c7e619f1855229a8;p=p5sagit%2Fp5-mst-13.2.git Remove the sometimes-lvalue cast p4raw-id: //depot/perlio@13797 --- diff --git a/hv.h b/hv.h index f99bc7d..3a3d867 100644 --- a/hv.h +++ b/hv.h @@ -136,7 +136,7 @@ C. #define XHvTOTALKEYS(xhv) ((xhv)->xhv_keys) /* The number of placeholders in the enumerated-keys hash */ -#define XHvPLACEHOLDERS(xhv) ((IV)((xhv)->xhv_placeholders)) +#define XHvPLACEHOLDERS(xhv) ((xhv)->xhv_placeholders) /* the number of keys that exist() (i.e. excluding placeholers) */ #define XHvUSEDKEYS(xhv) (XHvTOTALKEYS(xhv) - XHvPLACEHOLDERS(xhv))