diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-12-19 12:03:21 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-12-19 12:03:21 +0000 |
commit | 205c8ad3acbda0df8cac03a0c7e619f1855229a8 (patch) | |
tree | f0e61447c3be93283c76d01c5c47c6948fa8962c /hv.h | |
parent | 0dd95eb270db2cdad9a8acda96ac3a3aab8775c2 (diff) | |
download | perl-205c8ad3acbda0df8cac03a0c7e619f1855229a8.tar.gz |
Remove the sometimes-lvalue cast
p4raw-id: //depot/perlio@13797
Diffstat (limited to 'hv.h')
-rw-r--r-- | hv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -136,7 +136,7 @@ C<SV*>. #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)) |